rinetd/match.h

10 lines
188 B
C
Raw Normal View History

2017-03-30 14:48:05 +02:00
#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 */