blob: a5ca2e3cc1af8f4d713f2eb8f590008c8a37527c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef INTERVALREGEXP_H
#define INTERVALREGEXP_H
#ifdef __cplusplus
extern "C" {
#endif
int regexpGen (char *regexp, size_t buflen, long min, long max, int flottant);
#ifdef __cplusplus
}
#endif
#endif
|