rinetd/match.h

10 lines
224 B
C
Raw Normal View History

2017-03-30 14:48:05 +02:00
#ifndef MATCH_H
#define MATCH_H 1
2017-04-22 09:06:22 +02:00
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);
2017-03-30 14:48:05 +02:00
#endif /* MATCH_H */