freebsd-skq/contrib/less/pattern.h

68 lines
1.5 KiB
C
Raw Normal View History

2012-07-24 01:09:11 +00:00
/*
* Copyright (C) 1984-2019 Mark Nudelman
2012-07-24 01:09:11 +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 23:17:33 +00:00
#if HAVE_GNU_REGEX
#define __USE_GNU 1
#include <regex.h>
#define PATTERN_TYPE struct re_pattern_buffer *
2012-06-26 23:17:33 +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
extern int less_is_more;
#define REGCOMP_FLAG (less_is_more ? 0 : REG_EXTENDED)
2009-07-27 07:05:08 +00:00
#else
#define REGCOMP_FLAG 0
2009-07-27 07:05:08 +00:00
#endif
#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>
#define PATTERN_TYPE pcre *
2009-07-27 07:05:08 +00:00
#define CLEAR_PATTERN(name) name = NULL
#endif
#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*));
#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;
#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;
#define PATTERN_TYPE struct regexp *
2009-07-27 07:05:08 +00:00
#define CLEAR_PATTERN(name) name = NULL
#endif
2012-06-26 23:17:33 +00:00
#if NO_REGEX
#define PATTERN_TYPE void *
2012-06-26 23:17:33 +00:00
#define CLEAR_PATTERN(name)
#endif