mirror of
https://github.com/python/cpython.git
synced 2025-07-19 01:05:26 +00:00
AMK's latest; plus three null bytes that I added for purify
This commit is contained in:
parent
e4eb2231fd
commit
58132c6799
4 changed files with 157 additions and 167 deletions
|
@ -55,14 +55,14 @@ extern void (*pcre_free)(void *);
|
|||
/* Functions */
|
||||
|
||||
#ifdef FOR_PYTHON
|
||||
extern pcre *pcre_compile(const char *, int, char **, int *, PyObject *);
|
||||
extern pcre *pcre_compile(const char *, int, const char **, int *, PyObject *);
|
||||
#else
|
||||
extern pcre *pcre_compile(const char *, int, char **, int *);
|
||||
extern pcre *pcre_compile(const char *, int, const char **, int *);
|
||||
#endif
|
||||
extern int pcre_exec(const pcre *, const pcre_extra *, const char *,
|
||||
int, int, int *, int);
|
||||
extern int pcre_info(const pcre *, int *, int *);
|
||||
extern pcre_extra *pcre_study(const pcre *, int, char **);
|
||||
extern char *pcre_version(void);
|
||||
extern pcre_extra *pcre_study(const pcre *, int, const char **);
|
||||
extern const char *pcre_version(void);
|
||||
|
||||
#endif /* End of pcre.h */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue