| 166 | } |
| 167 | |
| 168 | int stringmatch(const char *pattern, const char *string, int nocase) { |
| 169 | return stringmatchlen(pattern,strlen(pattern),string,strlen(string),nocase); |
| 170 | } |
| 171 | |
| 172 | /* Fuzz stringmatchlen() trying to crash it with bad input. */ |
| 173 | int stringmatchlen_fuzz_test(void) { |
no test coverage detected