/regex.c
https://github.com/coatl/baseruby · C · 26 lines · 14 code · 2 blank · 10 comment · 0 complexity · 0d36ccd9892357661dfef16f47fd2313 MD5 · raw file
- /**********************************************************************
- regex.c - Oniguruma (regular expression library)
- Copyright (C) 2002-2004 K.Kosako (sndgk393 AT ybb DOT ne DOT jp)
- **********************************************************************/
- /*
- * Source wrapper for Ruby.
- */
- #include "regint.h"
- #include "regex.h"
- #include "regparse.c"
- #include "regcomp.c"
- #include "regexec.c"
- #include "regenc.c"
- #include "reggnu.c"
- #include "regerror.c"
- #ifndef ONIG_RUBY_M17N
- #include "enc/ascii.c"
- #include "enc/utf8.c"
- #include "enc/euc_jp.c"
- #include "enc/sjis.c"
- #endif