Lines Matching refs:__c
53 int __c, size_t __n)
61 extern void *memset (void *__s, int __c, size_t __n) __THROW __nonnull ((1));
70 extern void *memchr (const void *__s, int __c, size_t __n)
78 extern void *rawmemchr (const void *__s, int __c)
83 extern void *memrchr (const void *__s, int __c, size_t __n)
186 extern char *strchr (const char *__s, int __c)
190 extern char *strrchr (const char *__s, int __c)
198 extern char *strchrnul (const char *__s, int __c)
361 extern char *index (const char *__s, int __c)
365 extern char *rindex (const char *__s, int __c)
391 static __inline__ char *index (__const char *__s, int __c) in index() argument
393 return strchr(__s, __c); in index()
397 static __inline__ char *rindex (__const char *__s, int __c) in rindex() argument
399 return strrchr(__s, __c); in rindex()