Lines Matching refs:__c

55 		      int __c, size_t __n)
61 extern void *memset (void *__s, int __c, size_t __n) __THROW __nonnull ((1));
87 extern void *memchr (void *__s, int __c, size_t __n)
89 extern const void *memchr (const void *__s, int __c, size_t __n)
94 memchr (void *__s, int __c, size_t __n) __THROW
96 return __builtin_memchr (__s, __c, __n);
100 memchr (const void *__s, int __c, size_t __n) __THROW
102 return __builtin_memchr (__s, __c, __n);
107 extern void *memchr (const void *__s, int __c, size_t __n)
115 extern "C++" void *rawmemchr (void *__s, int __c)
117 extern "C++" const void *rawmemchr (const void *__s, int __c)
120 extern void *rawmemchr (const void *__s, int __c)
126 extern "C++" void *memrchr (void *__s, int __c, size_t __n)
129 extern "C++" const void *memrchr (const void *__s, int __c, size_t __n)
133 extern void *memrchr (const void *__s, int __c, size_t __n)
226 extern char *strchr (char *__s, int __c)
228 extern const char *strchr (const char *__s, int __c)
233 strchr (char *__s, int __c) __THROW
235 return __builtin_strchr (__s, __c);
239 strchr (const char *__s, int __c) __THROW
241 return __builtin_strchr (__s, __c);
246 extern char *strchr (const char *__s, int __c)
253 extern char *strrchr (char *__s, int __c)
255 extern const char *strrchr (const char *__s, int __c)
260 strrchr (char *__s, int __c) __THROW
262 return __builtin_strrchr (__s, __c);
266 strrchr (const char *__s, int __c) __THROW
268 return __builtin_strrchr (__s, __c);
273 extern char *strrchr (const char *__s, int __c)
281 extern "C++" char *strchrnul (char *__s, int __c)
283 extern "C++" const char *strchrnul (const char *__s, int __c)
286 extern char *strchrnul (const char *__s, int __c)