diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-05-10 05:15:59 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-05-10 05:15:59 +0200 | 
| commit | e706cbe5496e1829d1ddbe4d5bb0a6728204e510 (patch) | |
| tree | c72d1848ac6aef07703848d0ffbe80f1336a81cd /sample/simple.c | |
| parent | 69ab3addbc2dbbc90c311b2845cd25a2159435cd (diff) | |
| parent | 5e01a4852b31d537307994248869caf38b4023cc (diff) | |
new upstream release
Diffstat (limited to 'sample/simple.c')
| -rw-r--r-- | sample/simple.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/sample/simple.c b/sample/simple.c index 948a542..e570a30 100644 --- a/sample/simple.c +++ b/sample/simple.c @@ -16,6 +16,9 @@ extern int main(int argc, char* argv[])    static UChar* pattern = (UChar* )"a(.*)b|[e-f]+";    static UChar* str     = (UChar* )"zzzzaffffffffb"; +  OnigEncoding use_encs[] = { ONIG_ENCODING_ASCII }; +  onig_initialize(use_encs, sizeof(use_encs)/sizeof(use_encs[0])); +    r = onig_new(®, pattern, pattern + strlen((char* )pattern),  	ONIG_OPTION_DEFAULT, ONIG_ENCODING_ASCII, ONIG_SYNTAX_DEFAULT, &einfo);    if (r != ONIG_NORMAL) { | 
