2004-03-05 10:40:36 -05:00
|
|
|
/**********************************************************************
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2004-03-05 10:40:36 -05:00
|
|
|
regex.c - Oniguruma (regular expression library)
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2004-03-05 10:40:36 -05:00
|
|
|
Copyright (C) 2002-2004 K.Kosako (kosako@sofnec.co.jp)
|
1998-01-16 07:13:05 -05:00
|
|
|
|
2004-03-05 10:40:36 -05:00
|
|
|
**********************************************************************/
|
|
|
|
/*
|
|
|
|
* Source wrapper for Ruby.
|
|
|
|
*/
|
|
|
|
#include "regint.h"
|
1998-01-16 07:13:05 -05:00
|
|
|
#include "regex.h"
|
|
|
|
|
2004-03-05 10:40:36 -05:00
|
|
|
#include "regparse.c"
|
|
|
|
#include "regcomp.c"
|
|
|
|
#include "regexec.c"
|
|
|
|
#include "regenc.c"
|
|
|
|
#include "reggnu.c"
|
|
|
|
#include "regerror.c"
|
1999-01-19 23:59:39 -05:00
|
|
|
|
2004-03-05 10:40:36 -05:00
|
|
|
#ifndef ONIG_RUBY_M17N
|
|
|
|
#include "ascii.c"
|
|
|
|
#include "utf8.c"
|
|
|
|
#include "euc_jp.c"
|
|
|
|
#include "sjis.c"
|
1999-08-13 01:45:20 -04:00
|
|
|
#endif
|