Add missing declaration for `tr_strcasestr`

This commit is contained in:
Mike Gelfand 2019-06-23 12:07:33 +03:00
parent f3968b7708
commit 139f3a3f4b
1 changed files with 3 additions and 0 deletions

View File

@ -243,6 +243,9 @@ bool tr_str_has_suffix(char const* str, char const* suffix);
/** @brief Portability wrapper for memmem() that uses the system implementation if available */
char const* tr_memmem(char const* haystack, size_t haystack_len, char const* needle, size_t needle_len);
/** @brief Portability wrapper for strcasestr() that uses the system implementation if available */
char const* tr_strcasestr(char const* haystack, char const* needle);
/** @brief Portability wrapper for strsep() that uses the system implementation if available */
char* tr_strsep(char** str, char const* delim);