| 33 | } |
| 34 | |
| 35 | static 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 | |
| 46 | static void string_case_rfind(ACL_VSTRING *vp, const char *needle) |
| 47 | { |
no test coverage detected
searching dependent graphs…