| 10 |
/* Have to include stdlib.h in order to ensure that size_t is defined; |
/* Have to include stdlib.h in order to ensure that size_t is defined; |
| 11 |
it is needed here for malloc. */ |
it is needed here for malloc. */ |
| 12 |
|
|
| 13 |
|
#include <sys/types.h> |
| 14 |
#include <stdlib.h> |
#include <stdlib.h> |
| 15 |
|
|
| 16 |
/* Options */ |
/* Options */ |
| 48 |
|
|
| 49 |
/* Functions */ |
/* Functions */ |
| 50 |
|
|
| 51 |
extern pcre *pcre_compile(const char *, int, char **, int *); |
extern pcre *pcre_compile(const char *, int, const char **, int *); |
| 52 |
extern int pcre_exec(const pcre *, const pcre_extra *, const char *, |
extern int pcre_exec(const pcre *, const pcre_extra *, const char *, |
| 53 |
int, int, int *, int); |
int, int, int *, int); |
| 54 |
extern int pcre_info(const pcre *, int *, int *); |
extern int pcre_info(const pcre *, int *, int *); |
| 55 |
extern pcre_extra *pcre_study(const pcre *, int, char **); |
extern pcre_extra *pcre_study(const pcre *, int, const char **); |
| 56 |
extern char *pcre_version(void); |
extern const char *pcre_version(void); |
| 57 |
|
|
| 58 |
#endif /* End of pcre.h */ |
#endif /* End of pcre.h */ |