blob: 8a451b2edd2d144b1f2e54e91674b63ffa9a1e0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef MMATCH_H
#define MMATCH_H
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
int mmatch(const char *old_mask, const char *new_mask);
int match(const char *mask, const char *str);
char *collapse(char *pattern);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* MMATCH_H */
|