diff options
author | Rui Hirokawa <hirokawa@php.net> | 2003-08-23 06:18:44 +0000 |
---|---|---|
committer | Rui Hirokawa <hirokawa@php.net> | 2003-08-23 06:18:44 +0000 |
commit | 5a80df26f3a66f08c376bf959e608ea80071204a (patch) | |
tree | bad99c2afb794cc1795c4be0701d1883b19ff85e /ext/mbstring/oniguruma/regex.c | |
parent | d696f1267af69779aa361159de563d1886989a1a (diff) | |
download | php-git-5a80df26f3a66f08c376bf959e608ea80071204a.tar.gz |
@mbfilter is changed to bundled version of libmbfl to prevent LGPL licence problem. mbregex is changed to oniguruma.
Diffstat (limited to 'ext/mbstring/oniguruma/regex.c')
-rw-r--r-- | ext/mbstring/oniguruma/regex.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/mbstring/oniguruma/regex.c b/ext/mbstring/oniguruma/regex.c new file mode 100644 index 0000000000..0c4a43be9e --- /dev/null +++ b/ext/mbstring/oniguruma/regex.c @@ -0,0 +1,16 @@ +/********************************************************************** + + regex.c - Oniguruma (regular expression library) + + Copyright (C) 2002-2003 K.Kosako (kosako@sofnec.co.jp) + +**********************************************************************/ +/* + * Source wrapper for Ruby. + */ + +#include "regparse.c" +#include "regcomp.c" +#include "regexec.c" +#include "reggnu.c" +#include "regerror.c" |