[numex] Adding utf8_is_number_or_letter

This commit is contained in:
Al
2015-06-04 14:49:12 -04:00
parent ca746304e3
commit 528dd05983
2 changed files with 9 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ char *utf8_reversed_string(const char *s); // returns a copy, caller frees
ssize_t utf8proc_iterate_reversed(const uint8_t *str, ssize_t start, int32_t *dst);
bool utf8_is_letter(int32_t ch);
bool utf8_is_number(int32_t ch);
bool utf8_is_letter_or_number(int32_t ch);
bool utf8_is_hyphen(int32_t ch);
bool utf8_is_punctuation(int32_t ch);
bool utf8_is_symbol(int32_t ch);