MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / strchrnul

Function strchrnul

components/libc/compilers/common/cstring.c:121–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119}
120
121char *strchrnul(const char* s, int c)
122{
123 while (*s != '\0' && *s != c)
124 s++;
125 return (char*)s;
126}
127
128int strcasecmp(const char* s1, const char* s2)
129{

Callers 6

ofw_device_renameFunction · 0.85
rt_ofw_node_tag_equFunction · 0.85
rt_ofw_find_node_by_pathFunction · 0.85
iso9660_lookupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected