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

Function string_rfind

lib_acl/samples/vstring/main.cpp:35–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33}
34
35static void string_rfind(ACL_VSTRING *vp, const char *needle)
36{
37 char *ptr;
38
39 ptr = acl_vstring_rstrstr(vp, needle);
40 if (ptr)
41 printf(">>>acl_vstring_rstrstr: find %s from %s, ptr: %s\r\n", needle, STR(vp), ptr);
42 else
43 printf(">>>acl_vstring_rstrstr: not find %s from %s\r\n", needle, STR(vp));
44}
45
46static void string_case_rfind(ACL_VSTRING *vp, const char *needle)
47{

Callers 1

mainFunction · 0.85

Calls 1

acl_vstring_rstrstrFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…