blob: e7f1a35f2ae850dae37cd029d20a4ed47c8a9cf6 (
plain)
1
2
3
4
5
6
|
/* wildmatch.h */
int wildmatch(const char *pattern, const char *text);
int iwildmatch(const char *pattern, const char *text);
int wildmatch_array(const char *pattern, const char*const *texts, int where);
int litmatch_array(const char *string, const char*const *texts, int where);
|