LibC: add strcasestr to string.h

This commit is contained in:
DcraftBg
2026-04-17 21:04:31 +03:00
committed by Bananymous
parent 5fce3b64cc
commit f527aca9d0
2 changed files with 12 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ char* strsep(char** __restrict stringp, const char* __restrict delim);
char* strsignal(int signum);
size_t strspn(const char* s1, const char* s2);
char* strstr(const char* s1, const char* s2);
char* strcasestr(const char* haystack, const char* needle);
char* strtok(char* __restrict s, const char* __restrict sep);
char* strtok_r(char* __restrict s, const char* __restrict sep, char** __restrict state);
size_t strxfrm(char* __restrict s1, const char* __restrict s2, size_t n);