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