Fixed strpbrk().

Added its prototype.  Documented it.
This commit is contained in:
Greg King
2018-05-29 14:29:50 -04:00
parent a0832b62c6
commit 6d87370881
4 changed files with 88 additions and 39 deletions

View File

@@ -53,6 +53,7 @@ size_t __fastcall__ strlen (const char* s);
char* __fastcall__ strncat (char* s1, const char* s2, size_t count);
int __fastcall__ strncmp (const char* s1, const char* s2, size_t count);
char* __fastcall__ strncpy (char* dest, const char* src, size_t count);
char* __fastcall__ strpbrk (const char* str, const char* set);
char* __fastcall__ strrchr (const char* s, int c);
size_t __fastcall__ strspn (const char* s1, const char* s2);
char* __fastcall__ strstr (const char* str, const char* substr);