mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
AMK's latest
This commit is contained in:
parent
104be4a4a7
commit
042ff9eb3a
4 changed files with 168 additions and 90 deletions
|
@ -2,7 +2,7 @@
|
|||
* Perl-Compatible Regular Expressions *
|
||||
*************************************************/
|
||||
|
||||
/* Copyright (c) 1997 University of Cambridge */
|
||||
/* Copyright (c) 1998 University of Cambridge */
|
||||
|
||||
#ifndef _PCRE_H
|
||||
#define _PCRE_H
|
||||
|
@ -17,6 +17,12 @@ it is needed here for malloc. */
|
|||
#include <sys/types.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/* Allow for C++ users */
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* Options */
|
||||
|
||||
#define PCRE_CASELESS 0x0001
|
||||
|
@ -68,4 +74,8 @@ extern int pcre_info(const pcre *, int *, int *);
|
|||
extern pcre_extra *pcre_study(const pcre *, int, const char **);
|
||||
extern const char *pcre_version(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
} /* extern "C" */
|
||||
#endif
|
||||
|
||||
#endif /* End of pcre.h */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue