mirror of
https://github.com/samhocevar/rinetd.git
synced 2025-03-15 04:10:12 +08:00
Taken from the Debian archive: http://archive.debian.org/debian-security/pool/updates/main/r/rinetd/
10 lines
188 B
C
10 lines
188 B
C
#ifndef MATCH_H
|
|
#define MATCH_H 1
|
|
|
|
extern int match(char *s, char *p);
|
|
extern int matchNoCase(char *s, char *p);
|
|
extern int matchBody(char *s, char *p, int nocase);
|
|
|
|
#endif /* MATCH_H */
|
|
|