OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:__libcpp_strchr
(Results
1 - 2
of
2
) sorted by null
/external/libcxx/include/
string.h
74
char*
__libcpp_strchr
(const char* __s, int __c) {return (char*)strchr(__s, __c);}
function
76
const char* strchr(const char* __s, int __c) {return
__libcpp_strchr
(__s, __c);}
78
char* strchr( char* __s, int __c) {return
__libcpp_strchr
(__s, __c);}
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/
string.h
74
char*
__libcpp_strchr
(const char* __s, int __c) {return (char*)strchr(__s, __c);}
function
76
const char* strchr(const char* __s, int __c) {return
__libcpp_strchr
(__s, __c);}
78
char* strchr( char* __s, int __c) {return
__libcpp_strchr
(__s, __c);}
Completed in 64 milliseconds