diff options
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -5553,6 +5553,16 @@ STATIC char* S_find_byclass(pTHX_ regexp * prog, const regnode *c, char *s, cons #define PERL_ARGS_ASSERT_FIND_BYCLASS \ assert(prog); assert(c); assert(s); assert(strend) +STATIC char * S_find_next_ascii(char* s, const char * send, const bool is_utf8) + __attribute__warn_unused_result__; +#define PERL_ARGS_ASSERT_FIND_NEXT_ASCII \ + assert(s); assert(send) + +STATIC char * S_find_next_non_ascii(char* s, const char * send, const bool is_utf8) + __attribute__warn_unused_result__; +#define PERL_ARGS_ASSERT_FIND_NEXT_NON_ASCII \ + assert(s); assert(send) + STATIC bool S_isFOO_utf8_lc(pTHX_ const U8 classnum, const U8* character) __attribute__warn_unused_result__; #define PERL_ARGS_ASSERT_ISFOO_UTF8_LC \ |