2012-07-23 21:31:53 +00:00
|
|
|
/*
|
2019-06-29 04:39:01 +00:00
|
|
|
* Copyright (C) 1984-2019 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
|
|
|
|
|
2019-06-29 04:39:01 +00:00
|
|
|
#if HAVE_PCRE2
|
|
|
|
#define PCRE2_CODE_UNIT_WIDTH 8
|
|
|
|
#include <pcre2.h>
|
|
|
|
#define PATTERN_TYPE pcre2_code *
|
|
|
|
#define CLEAR_PATTERN(name) name = NULL
|
|
|
|
#endif
|
|
|
|
|
2009-07-27 07:05:08 +00:00
|
|
|
#if HAVE_RE_COMP
|
2017-11-20 06:53:49 +00:00
|
|
|
char *re_comp LESSPARAMS ((char*));
|
|
|
|
int re_exec LESSPARAMS ((char*));
|
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
|
2017-11-20 06:53:49 +00:00
|
|
|
char *regcmp LESSPARAMS ((char*));
|
|
|
|
char *regex LESSPARAMS ((char**, char*));
|
2009-07-27 07:05:08 +00:00
|
|
|
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
|