/regex.c

https://github.com/coatl/baseruby · C · 26 lines · 14 code · 2 blank · 10 comment · 0 complexity · 0d36ccd9892357661dfef16f47fd2313 MD5 · raw file

  1. /**********************************************************************
  2. regex.c - Oniguruma (regular expression library)
  3. Copyright (C) 2002-2004 K.Kosako (sndgk393 AT ybb DOT ne DOT jp)
  4. **********************************************************************/
  5. /*
  6. * Source wrapper for Ruby.
  7. */
  8. #include "regint.h"
  9. #include "regex.h"
  10. #include "regparse.c"
  11. #include "regcomp.c"
  12. #include "regexec.c"
  13. #include "regenc.c"
  14. #include "reggnu.c"
  15. #include "regerror.c"
  16. #ifndef ONIG_RUBY_M17N
  17. #include "enc/ascii.c"
  18. #include "enc/utf8.c"
  19. #include "enc/euc_jp.c"
  20. #include "enc/sjis.c"
  21. #endif