case-sensitive wildcard match */
| 142 | |
| 143 | /* case-sensitive wildcard match */ |
| 144 | boolean |
| 145 | pmatch(const char *patrn, const char *strng) |
| 146 | { |
| 147 | return pmatch_internal(patrn, strng, FALSE, (const char *) 0); |
| 148 | } |
| 149 | |
| 150 | /* case-insensitive wildcard match */ |
| 151 | boolean |
no test coverage detected