| 44 | } |
| 45 | |
| 46 | static void string_case_rfind(ACL_VSTRING *vp, const char *needle) |
| 47 | { |
| 48 | char *ptr; |
| 49 | |
| 50 | ptr = acl_vstring_rstrcasestr(vp, needle); |
| 51 | if (ptr) |
| 52 | printf(">>>acl_vstring_rstrcasestr: find %s from %s, ptr: %s\r\n", needle, STR(vp), ptr); |
| 53 | else |
| 54 | printf(">>>acl_vstring_rstrcasestr: not find %s from %s\r\n", needle, STR(vp)); |
| 55 | } |
| 56 | |
| 57 | static const char *needle_tab[] = { |
| 58 | "h", |
no test coverage detected
searching dependent graphs…