Home | History | Annotate | Download | only in include

Lines Matching refs:__ch

45 void* memchr(const void* __s, int __ch, size_t __n) __attribute_pure__;
47 extern "C++" void* memrchr(void* __s, int __ch, size_t __n) __RENAME(memrchr) __attribute_pure__;
48 extern "C++" const void* memrchr(const void* __s, int __ch, size_t __n) __RENAME(memrchr) __attribute_pure__;
50 void* memrchr(const void* __s, int __ch, size_t __n) __attribute_pure__;
58 void* memset(void* __dst, int __ch, size_t __n);
61 char* strchr(const char* __s, int __ch) __attribute_pure__;
62 char* __strchr_chk(const char* __s, int __ch, size_t __n) __INTRODUCED_IN(18);
65 extern "C++" char* strchrnul(char* __s, int __ch) __RENAME(strchrnul) __attribute_pure__ __INTRODUCED_IN(24);
66 extern "C++" const char* strchrnul(const char* __s, int __ch) __RENAME(strchrnul) __attribute_pure__ __INTRODUCED_IN(24);
68 char* strchrnul(const char* __s, int __ch) __attribute_pure__ __INTRODUCED_IN(24);
72 char* strrchr(const char* __s, int __ch) __attribute_pure__;
73 char* __strrchr_chk(const char* __s, int __ch, size_t __n) __INTRODUCED_IN(18);