2012-07-23 21:31:53 +00:00
|
|
|
/*
|
2022-09-05 23:57:47 +00:00
|
|
|
* Copyright (C) 1984-2022 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>
|
2022-09-05 23:57:47 +00:00
|
|
|
#define PATTERN_TYPE struct re_pattern_buffer *
|
2021-04-19 01:15:19 +00:00
|
|
|
#define SET_NULL_PATTERN(name) name = NULL
|
2012-06-26 20:38:53 +00:00
|
|
|
#endif
|
2009-07-27 07:05:08 +00:00
|
|
|
|
2022-09-05 23:57:47 +00:00
|
|
|
/* ---- POSIX ---- */
|
2009-07-27 07:05:08 +00:00
|
|
|
#if HAVE_POSIX_REGCOMP
|
|
|
|
#include <regex.h>
|
|
|
|
#ifdef REG_EXTENDED
|
2022-09-05 23:57:47 +00:00
|
|
|
#define REGCOMP_FLAG REG_EXTENDED
|
2009-07-27 07:05:08 +00:00
|
|
|
#else
|
2022-09-05 23:57:47 +00:00
|
|
|
#define REGCOMP_FLAG 0
|
2009-07-27 07:05:08 +00:00
|
|
|
#endif
|
2022-09-05 23:57:47 +00:00
|
|
|
#define PATTERN_TYPE regex_t *
|
2021-04-19 01:15:19 +00:00
|
|
|
#define SET_NULL_PATTERN(name) name = NULL
|
2022-09-05 23:57:47 +00:00
|
|
|
#define re_handles_caseless TRUE
|
2009-07-27 07:05:08 +00:00
|
|
|
#endif
|
|
|
|
|
2022-09-05 23:57:47 +00:00
|
|
|
/* ---- PCRE ---- */
|
2009-07-27 07:05:08 +00:00
|
|
|
#if HAVE_PCRE
|
|
|
|
#include <pcre.h>
|
2022-09-05 23:57:47 +00:00
|
|
|
#define PATTERN_TYPE pcre *
|
2021-04-19 01:15:19 +00:00
|
|
|
#define SET_NULL_PATTERN(name) name = NULL
|
2022-09-05 23:57:47 +00:00
|
|
|
#define re_handles_caseless TRUE
|
2009-07-27 07:05:08 +00:00
|
|
|
#endif
|
|
|
|
|
2022-09-05 23:57:47 +00:00
|
|
|
/* ---- PCRE2 ---- */
|
2019-06-29 04:39:01 +00:00
|
|
|
#if HAVE_PCRE2
|
|
|
|
#define PCRE2_CODE_UNIT_WIDTH 8
|
|
|
|
#include <pcre2.h>
|
2022-09-05 23:57:47 +00:00
|
|
|
#define PATTERN_TYPE pcre2_code *
|
2021-04-19 01:15:19 +00:00
|
|
|
#define SET_NULL_PATTERN(name) name = NULL
|
2022-09-05 23:57:47 +00:00
|
|
|
#define re_handles_caseless TRUE
|
2019-06-29 04:39:01 +00:00
|
|
|
#endif
|
|
|
|
|
2022-09-05 23:57:47 +00:00
|
|
|
/* ---- RE_COMP ---- */
|
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*));
|
2022-09-05 23:57:47 +00:00
|
|
|
#define PATTERN_TYPE int
|
2021-04-19 01:15:19 +00:00
|
|
|
#define SET_NULL_PATTERN(name) name = 0
|
2009-07-27 07:05:08 +00:00
|
|
|
#endif
|
|
|
|
|
2022-09-05 23:57:47 +00:00
|
|
|
/* ---- REGCMP ---- */
|
2009-07-27 07:05:08 +00:00
|
|
|
#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;
|
2022-09-05 23:57:47 +00:00
|
|
|
#define PATTERN_TYPE char **
|
2021-04-19 01:15:19 +00:00
|
|
|
#define SET_NULL_PATTERN(name) name = NULL
|
2009-07-27 07:05:08 +00:00
|
|
|
#endif
|
|
|
|
|
2022-09-05 23:57:47 +00:00
|
|
|
/* ---- REGCOMP ---- */
|
2009-07-27 07:05:08 +00:00
|
|
|
#if HAVE_V8_REGCOMP
|
|
|
|
#include "regexp.h"
|
2016-01-04 00:22:34 +00:00
|
|
|
extern int reg_show_error;
|
2022-09-05 23:57:47 +00:00
|
|
|
#define PATTERN_TYPE struct regexp *
|
2021-04-19 01:15:19 +00:00
|
|
|
#define SET_NULL_PATTERN(name) name = NULL
|
2009-07-27 07:05:08 +00:00
|
|
|
#endif
|
|
|
|
|
2022-09-05 23:57:47 +00:00
|
|
|
/* ---- NONE ---- */
|
2012-06-26 20:38:53 +00:00
|
|
|
#if NO_REGEX
|
2022-09-05 23:57:47 +00:00
|
|
|
#define PATTERN_TYPE void *
|
2021-04-19 01:15:19 +00:00
|
|
|
#define SET_NULL_PATTERN(name)
|
2012-06-26 20:38:53 +00:00
|
|
|
#endif
|
2022-09-05 23:57:47 +00:00
|
|
|
|
|
|
|
#ifndef re_handles_caseless
|
|
|
|
#define re_handles_caseless FALSE
|
|
|
|
#endif
|