MCPcopy Create free account
hub / github.com/apache/nuttx / strchr

Function strchr

include/string.h:298–308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

296
297# if __has_builtin(__builtin_strchr)
298builtin_function(strchr) FAR char *strchr(FAR const char *s, int c)
299{
300 if (__builtin_constant_p(s))
301 {
302 return __builtin_strchr(s, c);
303 }
304 else
305 {
306 return __orig_strchr(s, c);
307 }
308}
309# endif
310
311# if __has_builtin(__builtin_strcmp)

Callers 15

mac_addr_a2nFunction · 0.50
nrf91_ioctl_ltecmdFunction · 0.50
scour_pathFunction · 0.50
mainFunction · 0.50
check_arrayFunction · 0.50
get_actualparmtypeFunction · 0.50
get_fieldnameFunction · 0.50
my_strtok_rFunction · 0.50
get_tokenFunction · 0.50
get_html_stringFunction · 0.50
mainFunction · 0.50
parse_argsFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected