MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_split_at

Function acl_split_at

lib_acl/src/stdlib/string/acl_split_at.c:22–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20/* acl_split_at - break string at first delimiter, return remainder */
21
22char *acl_split_at(char *s, int delimiter)
23{
24 char *cp;
25
26 if ((cp = strchr(s, delimiter)) != 0) {
27 *cp++ = 0;
28 }
29 return cp;
30}
31
32/* acl_split_at_right - break string at last delimiter, return remainder */
33

Callers 4

dict_openFunction · 0.85
acl_host_portFunction · 0.85
string.cppFile · 0.85
auto_clnt.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…