1 /*
2 ** strmatch.h - String Wildcard matching
3 **
4 ** Copyright (c) 2002 Peter Eriksson <pen@lysator.liu.se>
5 ** Copyright (c) 1995 by Marcus E. Hennecke
6 **
7 ** Original author: Marcus E. Hennecke <marcush@leland.stanford.edu>
8 **
9 ** This program is free software; you can redistribute it and/or
10 ** modify it as you wish - as long as you don't claim that you wrote
11 ** it.
12 **
13 ** This program is distributed in the hope that it will be useful,
14 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16 */
17 
18 #ifndef PLIB_STRMATCH_H
19 #define PLIB_STRMATCH_H
20 
21 int
22 strmatch(const char *string,
23 	 const char *pattern);
24 
25 #endif
26