mirror of
https://github.com/samhocevar/rinetd.git
synced 2025-03-14 20:00:11 +08:00
10 lines
224 B
C
10 lines
224 B
C
#ifndef MATCH_H
|
|
#define MATCH_H 1
|
|
|
|
extern int match(char const *s, char const *p);
|
|
extern int matchNoCase(char const *s, char const *p);
|
|
extern int matchBody(char const *s, char const *p, int nocase);
|
|
|
|
#endif /* MATCH_H */
|
|
|