]> git.ipfire.org Git - thirdparty/glibc.git/blame - conform/data/regex.h-data
Add support for XPG7 testing.
[thirdparty/glibc.git] / conform / data / regex.h-data
CommitLineData
7f42d3dd
UD
1#ifndef ISO
2type regex_t
77faa354 3element regex_t size_t re_nsub
7f42d3dd
UD
4
5type regoff_t
6
7type regmatch_t
8element regmatch_t regoff_t rm_so
9element regmatch_t regoff_t rm_eo
10
11constant REG_EXTENDED
12constant REG_ICASE
13constant REG_NOSUB
14constant REG_NEWLINE
15
16constant REG_NOTBOL
17constant REG_NOTEOL
18
19constant REG_NOMATCH
20constant REG_BADPAT
21constant REG_ECOLLATE
22constant REG_ECTYPE
23constant REG_EESCAPE
24constant REG_ESUBREG
25constant REG_EBRACK
26constant REG_EPAREN
27constant REG_EBRACE
28constant REG_BADBR
29constant REG_ESPACE
30constant REG_BADRPT
f095bb72 31# if !defined XOPEN2K8 && !defined POSIX2008
7f42d3dd 32constant REG_ENOSYS
f095bb72 33# endif
7f42d3dd
UD
34
35function int regcomp (regex_t*, const char*, int)
36function int regexec (const regex_t*, const char*, size_t, regmatch_t[], int)
37function size_t regerror (int, const regex_t*, char*, size_t)
38function void regfree (regex_t*)
39
40allow REG_*
41allow re_*
42allow rm_*
b395c02d 43allow *_t
7f42d3dd 44#endif