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

Function strrchr

include/string.h:433–444  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

431
432# if __has_builtin(__builtin_strrchr)
433builtin_function(strrchr) FAR char *strrchr(FAR const char *s,
434 int c)
435{
436 if (__builtin_constant_p(s))
437 {
438 return __builtin_strrchr(s, c);
439 }
440 else
441 {
442 return __orig_strrchr(s, c);
443 }
444}
445# endif
446#endif
447

Callers 14

sim_uartram_registerFunction · 0.50
host_init_cwdFunction · 0.50
host_init_cwdFunction · 0.50
config_searchFunction · 0.50
do_dependencyFunction · 0.50
mainFunction · 0.50
mainFunction · 0.50
rpmsgdev_server_createdFunction · 0.50
builtin_loadbinaryFunction · 0.50
tmpfs_create_fileFunction · 0.50
tmpfs_create_directoryFunction · 0.50
tmpfs_unlinkFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected