Lines Matching defs:s
433 char *strchr(const char *s, int c) in strchr()
452 char *strchrnul(const char *s, int c) in strchrnul()
471 char *strnchrnul(const char *s, size_t count, int c) in strnchrnul()
484 char *strrchr(const char *s, int c) in strrchr()
506 char *strnchr(const char *s, size_t count, int c) in strnchr()
541 char *strim(char *s) in strim()
564 size_t strlen(const char *s) in strlen()
581 size_t strnlen(const char *s, size_t count) in strnlen()
598 size_t strspn(const char *s, const char *accept) in strspn()
625 size_t strcspn(const char *s, const char *reject) in strcspn()
676 char *strsep(char **s, const char *ct) in strsep()
797 void *memset(void *s, int c, size_t count) in memset()
819 void *memset16(uint16_t *s, uint16_t v, size_t count) in memset16()
841 void *memset32(uint32_t *s, uint32_t v, size_t count) in memset32()
863 void *memset64(uint64_t *s, uint64_t v, size_t count) in memset64()
887 const char *s = src; in memcpy() local
908 const char *s; in memmove() local
1054 void *memchr(const void *s, int c, size_t n) in memchr()
1141 char *strreplace(char *s, char old, char new) in strreplace()