mirror of
https://github.com/transmission/transmission
synced 2025-01-30 19:03:04 +00:00
Add missing declaration for tr_strcasestr
This commit is contained in:
parent
f3968b7708
commit
139f3a3f4b
1 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue