Lines Matching refs:pcre
5 /* This is the public header file for the PCRE library, to be #included by
6 applications that call the PCRE functions.
42 /* The current PCRE version information. */
49 /* When an application links to a PCRE DLL in Windows, the symbols that are
50 imported have to be identified as such. When building PCRE, the appropriate
149 #define PCRE_ERROR_CALLOUT (-9) /* Never used by PCRE itself */
213 typedef struct real_pcre pcre;
215 /* When PCRE is compiled as a C++ library, the subject pointer type can be
280 /* Exported PCRE functions */
282 PCRE_EXP_DECL pcre *pcre_compile(const char *, int, const char **, int *,
284 PCRE_EXP_DECL pcre *pcre_compile2(const char *, int, int *, const char **,
287 PCRE_EXP_DECL int pcre_copy_named_substring(const pcre *, const char *,
291 PCRE_EXP_DECL int pcre_dfa_exec(const pcre *, const pcre_extra *,
293 PCRE_EXP_DECL int pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
297 PCRE_EXP_DECL int pcre_fullinfo(const pcre *, const pcre_extra *, int,
299 PCRE_EXP_DECL int pcre_get_named_substring(const pcre *, const char *,
301 PCRE_EXP_DECL int pcre_get_stringnumber(const pcre *, const char *);
302 PCRE_EXP_DECL int pcre_get_stringtable_entries(const pcre *, const char *,
308 PCRE_EXP_DECL int pcre_info(const pcre *, int *, int *);
310 PCRE_EXP_DECL int pcre_refcount(pcre *, int);
311 PCRE_EXP_DECL pcre_extra *pcre_study(const pcre *, int, const char **);
318 #endif /* End of pcre.h */