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

Function acl_split_at_right

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

Source from the content-addressed store, hash-verified

32/* acl_split_at_right - break string at last delimiter, return remainder */
33
34char *acl_split_at_right(char *s, int delimiter)
35{
36 char *cp;
37
38 if ((cp = strrchr(s, delimiter)) != 0) {
39 *cp++ = 0;
40 }
41 return cp;
42}

Callers 2

acl_host_portFunction · 0.85
string.cppFile · 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…