blob: 59fc51b58c7a73c64b44074a9077eb451d3d6154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright 2011-2019 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
*
* Copyright 2011-2016 Mike Frysinger - <vapier@gentoo.org>
*/
#ifndef _XREGEX_H
#define _XREGEX_H 1
#include <regex.h>
int wregcomp(regex_t *preg, const char *regex, int cflags);
void xregcomp(regex_t *preg, const char *regex, int cflags);
int rematch(const char *, const char *, int);
#endif
|