Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
121
char *strchrnul(const char* s, int c)
122
{
123
while (*s !=
'\0'
&& *s != c)
124
s++;
125
return (char*)s;
126
}
127
128
int strcasecmp(const char* s1, const char* s2)
129
{
Callers
6
dtb_node_find_node_opts_by_path
Function · 0.85
ofw_device_rename
Function · 0.85
rt_fdt_scan_chosen_stdout
Function · 0.85
rt_ofw_node_tag_equ
Function · 0.85
rt_ofw_find_node_by_path
Function · 0.85
iso9660_lookup
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected