[utils] string_contains_hyphen method

This commit is contained in:
Al
2015-08-02 14:35:18 -06:00
parent 46141a6c36
commit 3178eda501
2 changed files with 24 additions and 0 deletions

View File

@@ -69,6 +69,9 @@ bool utf8_is_punctuation(int cat);
bool utf8_is_symbol(int cat);
bool utf8_is_separator(int cat);
bool string_contains_hyphen(char *str);
bool string_contains_hyphen_len(char *str, size_t len);
size_t string_ltrim(char *str);
size_t string_rtrim(char *str);
size_t string_trim(char *str);