12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #include <features.h>
- #ifdef __UCLIBC__
- # define _REGEX_RE_COMP
- # define HAVE_LANGINFO
- # define HAVE_LANGINFO_CODESET
- # include <stdbool.h>
- # include <stdint.h>
- # include <string.h>
- # include <stdlib.h>
- # ifdef __UCLIBC_HAS_WCHAR__
- # define RE_ENABLE_I18N
- # include <wchar.h>
- # include <wctype.h>
- # define __iswctype iswctype
- # define __wcrtomb wcrtomb
- # define __btowc btowc
- # define __wctype wctype
- # endif
- # include <ctype.h>
- #endif
- #ifdef __cplusplus
- # error "This is C code, use a C compiler"
- #endif
- #include <limits.h>
- #include <regex.h>
- #include "regex_internal.h"
- #include "regex_internal.c"
- #include "regcomp.c"
- #include "regexec.c"
|