summaryrefslogtreecommitdiff
path: root/regex.c
blob: f77cf13dd0035051f01f7cc09e047d27d8a22f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**********************************************************************

  regex.c -  Oniguruma (regular expression library)

  Copyright (C) 2002-2004  K.Kosako (kosako@sofnec.co.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 "ascii.c"
#include "utf8.c"
#include "euc_jp.c"
#include "sjis.c"
#endif