2012-07-23 21:31:53 +00:00
|
|
|
/*
|
2017-04-29 06:30:21 +00:00
|
|
|
* Copyright (C) 1984-2017 Mark Nudelman
|
2012-07-23 21:31:53 +00:00
|
|
|
*
|
|
|
|
* You may distribute under the terms of either the GNU General Public
|
|
|
|
* License or the Less License, as specified in the README file.
|
|
|
|
*
|
|
|
|
* For more information, see the README file.
|
|
|
|
*/
|
2012-06-26 20:38:53 +00:00
|
|
|
|
|
|
|
#if HAVE_GNU_REGEX
|
|
|
|
#define __USE_GNU 1
|
|
|
|
#include <regex.h>
|
2017-04-29 06:30:21 +00:00
|
|
|
#define PATTERN_TYPE struct re_pattern_buffer *
|
2012-06-26 20:38:53 +00:00
|
|
|
#define CLEAR_PATTERN(name) name = NULL
|
|
|
|
#endif
|
2009-07-27 07:05:08 +00:00
|
|
|
|
|
|
|
#if HAVE_POSIX_REGCOMP
|
|
|
|
#include <regex.h>
|
|
|
|
#ifdef REG_EXTENDED
|
2009-07-29 09:20:32 +00:00
|
|
|
extern int less_is_more;
|
2017-05-05 14:33:39 +00:00
|
|
|
#define REGCOMP_FLAG (less_is_more ? 0 : REG_EXTENDED)
|
2009-07-27 07:05:08 +00:00
|
|
|
#else
|
2017-04-29 06:30:21 +00:00
|
|
|
#define REGCOMP_FLAG 0
|
2009-07-27 07:05:08 +00:00
|
|
|
#endif
|
2017-04-29 06:30:21 +00:00
|
|
|
#define PATTERN_TYPE regex_t *
|
2009-07-27 07:05:08 +00:00
|
|
|
#define CLEAR_PATTERN(name) name = NULL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_PCRE
|
|
|
|
#include <pcre.h>
|
2017-04-29 06:30:21 +00:00
|
|
|
#define PATTERN_TYPE pcre *
|
2009-07-27 07:05:08 +00:00
|
|
|
#define CLEAR_PATTERN(name) name = NULL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_RE_COMP
|
|
|
|
char *re_comp();
|
|
|
|
int re_exec();
|
2017-04-29 06:30:21 +00:00
|
|
|
#define PATTERN_TYPE int
|
2009-07-27 07:05:08 +00:00
|
|
|
#define CLEAR_PATTERN(name) name = 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_REGCMP
|
|
|
|
char *regcmp();
|
|
|
|
char *regex();
|
|
|
|
extern char *__loc1;
|
2017-04-29 06:30:21 +00:00
|
|
|
#define PATTERN_TYPE char **
|
2009-07-27 07:05:08 +00:00
|
|
|
#define CLEAR_PATTERN(name) name = NULL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAVE_V8_REGCOMP
|
|
|
|
#include "regexp.h"
|
2016-01-04 00:22:34 +00:00
|
|
|
extern int reg_show_error;
|
2017-04-29 06:30:21 +00:00
|
|
|
#define PATTERN_TYPE struct regexp *
|
2009-07-27 07:05:08 +00:00
|
|
|
#define CLEAR_PATTERN(name) name = NULL
|
|
|
|
#endif
|
|
|
|
|
2012-06-26 20:38:53 +00:00
|
|
|
#if NO_REGEX
|
2017-04-29 06:30:21 +00:00
|
|
|
#define PATTERN_TYPE void *
|
2012-06-26 20:38:53 +00:00
|
|
|
#define CLEAR_PATTERN(name)
|
|
|
|
#endif
|