Add strspn

This commit is contained in:
Simon Choi
2023-12-31 10:42:20 +01:00
parent 7bc2214ec6
commit cd2def3e30
2 changed files with 50 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ size_t strcspn(const char *s1, const char *s2);
size_t strlen(const char *str);
int strncmp(const char *s1, const char *s2, size_t n);
char *strrchr(const char *p, int ch);
size_t strspn(const char *s1, const char *s2);
int memcmp(const void *str1, const void *str2, size_t n);
void *memcpy(void *dest, const void *src, size_t n);