1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
/* -*-c-*- */
#ifndef FVWMLIB_WILD_H
#define FVWMLIB_WILD_H
/*
* Does `string' match `pattern'? '*' in pattern matches any sub-string
* (including the null string) '?' matches any single char. For use
* by filenameforall. Note that '*' matches across directory boundaries
*
* This code donated by Paul Hudson <paulh@harlequin.co.uk>
* It is public domain, no strings attached. No guarantees either.
*
*/
int matchWildcards(const char *pattern, const char *string);
#endif /* FVWMLIB_WILD_H */
|