Lines Matching full:char
26 char* strcpy (char* restrict s1, const char* restrict s2);
27 char* strncpy(char* restrict s1, const char* restrict s2, size_t n);
28 char* strcat (char* restrict s1, const char* restrict s2);
29 char* strncat(char* restrict s1, const char* restrict s2, size_t n);
31 int strcmp (const char* s1, const char* s2);
32 int strncmp(const char* s1, const char* s2, size_t n);
33 int strcoll(const char* s1, const char* s2);
34 size_t strxfrm(char* restrict s1, const char* restrict s2, size_t n);
37 const char* strchr(const char* s, int c);
38 char* strchr( char* s, int c);
39 size_t strcspn(const char* s1, const char* s2);
40 const char* strpbrk(const char* s1, const char* s2);
41 char* strpbrk( char* s1, const char* s2);
42 const char* strrchr(const char* s, int c);
43 char* strrchr( char* s, int c);
44 size_t strspn(const char* s1, const char* s2);
45 const char* strstr(const char* s1, const char* s2);
46 char* strstr( char* s1, const char* s2);
47 char* strtok(char* restrict s1, const char* restrict s2);
49 char* strerror(int errnum);
50 size_t strlen(const char* s);
73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strchr(const char* __s, int __c) {
76 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strchr(char* __s, int __c) {
80 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strpbrk(const char* __s1, const char* __s2) {
83 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strpbrk(char* __s1, const char* __s2) {
87 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strrchr(const char* __s, int __c) {
90 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strrchr(char* __s, int __c) {
101 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strstr(const char* __s1, const char* __s2) {
104 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strstr(char* __s1, const char* __s2) {