| 11 | #define LEN ACL_VSTRING_LEN |
| 12 | |
| 13 | static void string_find(ACL_VSTRING *vp, const char *needle) |
| 14 | { |
| 15 | char *ptr; |
| 16 | |
| 17 | ptr = acl_vstring_strstr(vp, needle); |
| 18 | if (ptr) |
| 19 | printf(">>>acl_vstring_strstr: find %s from %s, ptr: %s\r\n", needle, STR(vp), ptr); |
| 20 | else |
| 21 | printf(">>>acl_vstring_strstr: not find %s from %s\r\n", needle, STR(vp)); |
| 22 | } |
| 23 | |
| 24 | static void string_case_find(ACL_VSTRING *vp, const char *needle) |
| 25 | { |
no test coverage detected
searching dependent graphs…