case-insensitive wildcard match */
| 149 | |
| 150 | /* case-insensitive wildcard match */ |
| 151 | boolean |
| 152 | pmatchi(const char *patrn, const char *strng) |
| 153 | { |
| 154 | return pmatch_internal(patrn, strng, TRUE, (const char *) 0); |
| 155 | } |
| 156 | |
| 157 | |
| 158 | /*strutil.c*/ |
no test coverage detected