diff --git a/src/include/switch_utils.h b/src/include/switch_utils.h index 7e1951aaaa..741e580e4d 100644 --- a/src/include/switch_utils.h +++ b/src/include/switch_utils.h @@ -135,6 +135,7 @@ SWITCH_DECLARE(unsigned char) switch_char_to_rfc2833(char key); #define is_dtmf(key) ((key > 47 && key < 58) || (key > 64 && key < 69) || (key > 96 && key < 101) || key == 35 || key == 42 || key == 87 || key == 119) #define end_of(_s) *(_s + strlen(_s) - 1) +#define end_of_p(_s) (_s + strlen(_s) - 1) /*! \brief Test for the existance of a flag on an arbitary object \param obj the object to test