MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / memchr

Function memchr

system/lib/libcxx/include/string.h:98–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c, size_t __n) {
99 return __builtin_memchr(__s, __c, __n);
100}
101inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD void* memchr(void* __s, int __c, size_t __n) {
102 return __builtin_memchr(__s, __c, __n);
103}

Callers 2

mainFunction · 0.50
mainFunction · 0.50

Calls

no outgoing calls

Tested by 2

mainFunction · 0.40
mainFunction · 0.40