Updated to fedora-glibc-20051116T0829
[glibc.git] / conform / data / regex.h-data
blob38495d5b833c12ba9445c25eef6cb6fc0bff2fa9
1 #ifndef ISO
2 type regex_t
3 element regex_t size_t re_nsub
5 type regoff_t
7 type regmatch_t
8 element regmatch_t regoff_t rm_so
9 element regmatch_t regoff_t rm_eo
11 constant REG_EXTENDED
12 constant REG_ICASE
13 constant REG_NOSUB
14 constant REG_NEWLINE
16 constant REG_NOTBOL
17 constant REG_NOTEOL
19 constant REG_NOMATCH
20 constant REG_BADPAT
21 constant REG_ECOLLATE
22 constant REG_ECTYPE
23 constant REG_EESCAPE
24 constant REG_ESUBREG
25 constant REG_EBRACK
26 constant REG_EPAREN
27 constant REG_EBRACE
28 constant REG_BADBR
29 constant REG_ESPACE
30 constant REG_BADRPT
31 constant REG_ENOSYS
33 function int regcomp (regex_t*, const char*, int)
34 function int regexec (const regex_t*, const char*, size_t, regmatch_t[], int)
35 function size_t regerror (int, const regex_t*, char*, size_t)
36 function void regfree (regex_t*)
38 allow REG_*
39 allow re_*
40 allow rm_*
41 allow *_t
42 #endif