rroonga 4.0.4-x86-mingw32 → 4.0.5-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (481) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +73 -0
  3. data/Rakefile +13 -0
  4. data/doc/text/news.textile +26 -2
  5. data/ext/groonga/extconf.rb +3 -1
  6. data/ext/groonga/rb-grn-context.c +1 -1
  7. data/ext/groonga/rb-grn-double-array-trie.c +160 -4
  8. data/ext/groonga/rb-grn-object.c +10 -1
  9. data/ext/groonga/rb-grn-posting.c +4 -4
  10. data/ext/groonga/rb-grn-table-key-support.c +9 -4
  11. data/ext/groonga/rb-grn-table.c +1 -1
  12. data/ext/groonga/rb-grn-utils.c +2 -6
  13. data/ext/groonga/rb-grn-variable-size-column.c +2 -2
  14. data/ext/groonga/rb-grn.h +27 -2
  15. data/lib/1.9/groonga.so +0 -0
  16. data/lib/2.0/groonga.so +0 -0
  17. data/lib/2.1/groonga.so +0 -0
  18. data/lib/groonga/record.rb +19 -2
  19. data/lib/groonga/schema.rb +2 -2
  20. data/rroonga-build.rb +1 -1
  21. data/rroonga.gemspec +5 -5
  22. data/test/test-column.rb +6 -6
  23. data/test/test-database.rb +6 -2
  24. data/test/test-double-array-trie.rb +18 -0
  25. data/test/test-expression-builder.rb +3 -2
  26. data/test/test-hash.rb +13 -1
  27. data/test/test-plugin.rb +3 -1
  28. data/test/test-record.rb +10 -0
  29. data/test/test-variable-size-column.rb +4 -4
  30. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  31. data/vendor/local/bin/groonga.exe +0 -0
  32. data/vendor/local/bin/libgroonga-0.dll +0 -0
  33. data/vendor/local/bin/libmecab-1.dll +0 -0
  34. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  35. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  36. data/vendor/local/bin/libonig-5.dll +0 -0
  37. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  38. data/vendor/local/bin/mecab.exe +0 -0
  39. data/vendor/local/bin/onig-config +78 -0
  40. data/vendor/local/include/oniggnu.h +85 -0
  41. data/vendor/local/include/onigposix.h +169 -0
  42. data/vendor/local/include/oniguruma.h +870 -0
  43. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  44. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  45. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  46. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  47. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  48. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  49. data/vendor/local/lib/groonga/plugins/ruby/eval.la +41 -0
  50. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  51. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  52. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  53. data/vendor/local/lib/groonga/plugins/ruby/load.la +41 -0
  54. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  55. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  56. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  57. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  58. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  59. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  60. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  61. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  62. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  63. data/vendor/local/lib/groonga/scripts/ruby/backtrace_entry.rb +20 -0
  64. data/vendor/local/lib/groonga/scripts/ruby/context.rb +31 -0
  65. data/vendor/local/lib/groonga/scripts/ruby/context/error_level.rb +30 -0
  66. data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +99 -0
  67. data/vendor/local/lib/groonga/scripts/ruby/eval_context.rb +13 -0
  68. data/vendor/local/lib/groonga/scripts/ruby/expression.rb +13 -0
  69. data/vendor/local/lib/groonga/scripts/ruby/index_info.rb +10 -0
  70. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +27 -0
  71. data/vendor/local/lib/groonga/scripts/ruby/logger/level.rb +32 -0
  72. data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +30 -0
  73. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +342 -0
  74. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +198 -0
  75. data/vendor/local/lib/libgroonga.a +0 -0
  76. data/vendor/local/lib/libgroonga.dll.a +0 -0
  77. data/vendor/local/lib/libmecab.a +0 -0
  78. data/vendor/local/lib/libmecab.dll.a +0 -0
  79. data/vendor/local/lib/libmsgpack.a +0 -0
  80. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  81. data/vendor/local/lib/libmsgpackc.a +0 -0
  82. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  83. data/vendor/local/lib/libonig.a +0 -0
  84. data/vendor/local/lib/libonig.dll.a +0 -0
  85. data/vendor/local/lib/libonig.la +41 -0
  86. data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
  87. data/vendor/local/lib/pkgconfig/oniguruma.pc +14 -0
  88. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  89. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  90. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  91. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  92. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  93. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  94. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt +4 -5
  95. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +46 -10
  96. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -87
  97. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
  98. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  99. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  100. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  101. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
  102. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  103. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +68 -0
  104. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables.txt +3 -3
  105. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt +1 -1
  106. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/lexicon.txt +5 -4
  107. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +265 -232
  108. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +30 -23
  109. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +2 -2
  110. data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
  111. data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
  112. data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
  113. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
  114. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
  115. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +5 -5
  116. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
  117. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +5 -5
  118. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +5 -5
  119. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
  120. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
  121. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
  122. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
  123. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +5 -5
  124. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +8 -9
  125. data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
  126. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
  127. data/vendor/local/share/doc/groonga/en/html/genindex.html +5 -5
  128. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
  129. data/vendor/local/share/doc/groonga/en/html/index.html +17 -18
  130. data/vendor/local/share/doc/groonga/en/html/install.html +8 -9
  131. data/vendor/local/share/doc/groonga/en/html/install/centos.html +63 -10
  132. data/vendor/local/share/doc/groonga/en/html/install/debian.html +10 -108
  133. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
  134. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
  135. data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
  136. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
  137. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
  138. data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
  139. data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
  140. data/vendor/local/share/doc/groonga/en/html/news.html +123 -48
  141. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
  142. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
  143. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
  144. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +6 -6
  145. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +5 -5
  146. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +5 -5
  147. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +5 -5
  148. data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
  149. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  150. data/vendor/local/share/doc/groonga/en/html/reference.html +10 -10
  151. data/vendor/local/share/doc/groonga/en/html/reference/api.html +5 -5
  152. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +5 -5
  153. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +5 -5
  154. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +5 -5
  155. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +5 -5
  156. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +5 -5
  157. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +5 -5
  158. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +5 -5
  159. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +5 -5
  160. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +5 -5
  161. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +5 -5
  162. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +5 -5
  163. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +5 -5
  164. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +5 -5
  165. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +5 -5
  166. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +5 -5
  167. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +5 -5
  168. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +5 -5
  169. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +5 -5
  170. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +5 -5
  171. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +5 -5
  172. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +5 -5
  173. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +5 -5
  174. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
  175. data/vendor/local/share/doc/groonga/en/html/reference/column.html +5 -5
  176. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +5 -5
  177. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +5 -5
  178. data/vendor/local/share/doc/groonga/en/html/reference/command.html +5 -5
  179. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
  180. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
  181. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
  182. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
  183. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
  184. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
  185. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +5 -5
  186. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +5 -5
  187. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +5 -5
  188. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
  189. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
  190. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
  191. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
  192. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
  193. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
  194. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
  195. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
  196. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
  197. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +5 -5
  198. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +5 -5
  199. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +5 -5
  200. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +5 -5
  201. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +5 -5
  202. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +5 -5
  203. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +5 -5
  204. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +5 -5
  205. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +5 -5
  206. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +5 -5
  207. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +5 -5
  208. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +5 -5
  209. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +5 -5
  210. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +5 -5
  211. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +5 -5
  212. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +5 -5
  213. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +8 -8
  214. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +12 -12
  215. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +8 -8
  216. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +8 -8
  217. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +8 -8
  218. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +8 -8
  219. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +8 -8
  220. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +8 -8
  221. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +8 -8
  222. data/vendor/local/share/doc/groonga/en/html/reference/function.html +5 -5
  223. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +5 -5
  224. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +5 -5
  225. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +5 -5
  226. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +5 -5
  227. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +5 -5
  228. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +5 -5
  229. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +5 -5
  230. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +5 -5
  231. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +5 -5
  232. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +5 -5
  233. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +5 -5
  234. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +5 -5
  235. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +5 -5
  236. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +5 -5
  237. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +5 -5
  238. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +5 -5
  239. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +5 -5
  240. data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
  241. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
  242. data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
  243. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
  244. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +5 -5
  245. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
  246. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
  247. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +5 -5
  248. data/vendor/local/share/doc/groonga/en/html/reference/types.html +5 -5
  249. data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
  250. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  251. data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
  252. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
  253. data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
  254. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
  255. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
  256. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
  257. data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
  258. data/vendor/local/share/doc/groonga/en/html/spec.html +5 -5
  259. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
  260. data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
  261. data/vendor/local/share/doc/groonga/en/html/suggest.html +9 -9
  262. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
  263. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
  264. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
  265. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
  266. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
  267. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
  268. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  269. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
  270. data/vendor/local/share/doc/groonga/en/html/tutorial.html +13 -13
  271. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
  272. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -6
  273. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
  274. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +5 -5
  275. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +14 -13
  276. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
  277. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +264 -250
  278. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
  279. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +9 -9
  280. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +46 -41
  281. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +7 -7
  282. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  283. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt +4 -5
  284. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +46 -10
  285. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -87
  286. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
  287. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  288. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  289. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  290. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
  291. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  292. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +68 -0
  293. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables.txt +3 -3
  294. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt +1 -1
  295. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/lexicon.txt +5 -4
  296. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +265 -232
  297. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +30 -23
  298. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +2 -2
  299. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
  300. data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
  301. data/vendor/local/share/doc/groonga/ja/html/contribution.html +5 -5
  302. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
  303. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
  304. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +5 -5
  305. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
  306. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +5 -5
  307. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +5 -5
  308. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
  309. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
  310. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
  311. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +5 -5
  312. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +5 -5
  313. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +7 -6
  314. data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
  315. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +5 -5
  316. data/vendor/local/share/doc/groonga/ja/html/genindex.html +5 -5
  317. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
  318. data/vendor/local/share/doc/groonga/ja/html/index.html +14 -15
  319. data/vendor/local/share/doc/groonga/ja/html/install.html +8 -9
  320. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +57 -10
  321. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +10 -102
  322. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +8 -8
  323. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
  324. data/vendor/local/share/doc/groonga/ja/html/install/others.html +8 -8
  325. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
  326. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +8 -8
  327. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
  328. data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
  329. data/vendor/local/share/doc/groonga/ja/html/news.html +130 -48
  330. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
  331. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
  332. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
  333. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +5 -5
  334. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +5 -5
  335. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +5 -5
  336. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +5 -5
  337. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
  338. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  339. data/vendor/local/share/doc/groonga/ja/html/reference.html +5 -5
  340. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +5 -5
  341. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +9 -9
  342. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +17 -33
  343. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +23 -26
  344. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +5 -5
  345. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +10 -10
  346. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +6 -6
  347. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +10 -10
  348. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +22 -37
  349. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +5 -5
  350. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +5 -5
  351. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +5 -5
  352. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +5 -5
  353. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +5 -5
  354. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +5 -5
  355. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +5 -5
  356. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +5 -5
  357. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +5 -5
  358. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +5 -5
  359. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +5 -5
  360. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +5 -5
  361. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +5 -5
  362. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +6 -6
  363. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
  364. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +5 -5
  365. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +5 -5
  366. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +5 -5
  367. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
  368. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
  369. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
  370. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +5 -5
  371. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
  372. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
  373. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
  374. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +5 -5
  375. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
  376. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
  377. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +5 -5
  378. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
  379. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
  380. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
  381. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
  382. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +5 -5
  383. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
  384. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
  385. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
  386. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +5 -5
  387. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +5 -5
  388. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
  389. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
  390. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +5 -5
  391. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +5 -5
  392. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +5 -5
  393. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
  394. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +5 -5
  395. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +5 -5
  396. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +5 -5
  397. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
  398. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
  399. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +5 -5
  400. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +5 -5
  401. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +5 -5
  402. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
  403. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
  404. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +5 -5
  405. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +5 -5
  406. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
  407. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
  408. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +5 -5
  409. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +5 -5
  410. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
  411. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +5 -5
  412. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +5 -5
  413. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +5 -5
  414. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +5 -5
  415. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +5 -5
  416. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +5 -5
  417. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +5 -5
  418. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +5 -5
  419. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +5 -5
  420. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +5 -5
  421. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +5 -5
  422. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +5 -5
  423. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +5 -5
  424. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +5 -5
  425. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +5 -5
  426. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +5 -5
  427. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +5 -5
  428. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +5 -5
  429. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
  430. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
  431. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
  432. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
  433. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +5 -5
  434. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +5 -5
  435. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
  436. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +5 -5
  437. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +5 -5
  438. data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
  439. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  440. data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
  441. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
  442. data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
  443. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +5 -5
  444. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
  445. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
  446. data/vendor/local/share/doc/groonga/ja/html/server/package.html +5 -5
  447. data/vendor/local/share/doc/groonga/ja/html/spec.html +5 -5
  448. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +5 -5
  449. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
  450. data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
  451. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
  452. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
  453. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
  454. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
  455. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
  456. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
  457. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
  458. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
  459. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +11 -11
  460. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
  461. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -6
  462. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
  463. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +5 -5
  464. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +9 -9
  465. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
  466. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +249 -237
  467. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +5 -5
  468. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +9 -9
  469. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +36 -36
  470. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +7 -7
  471. data/vendor/local/share/license/mruby/AUTHORS +22 -0
  472. data/vendor/local/share/license/mruby/LEGAL +6 -0
  473. data/vendor/local/share/license/mruby/MITL +20 -0
  474. data/vendor/local/share/license/mruby/README.md +111 -0
  475. data/vendor/local/share/license/onigmo/AUTHORS +2 -0
  476. data/vendor/local/share/license/onigmo/COPYING +87 -0
  477. data/vendor/local/share/license/onigmo/README +249 -0
  478. data/vendor/local/share/man/ja/man1/groonga.1 +471 -485
  479. data/vendor/local/share/man/man1/groonga.1 +389 -454
  480. metadata +82 -46
  481. data/README.textile +0 -73
@@ -0,0 +1,78 @@
1
+ #!/bin/sh
2
+ # Copyright (C) 2006 K.Kosako (sndgk393 AT ybb DOT ne DOT jp)
3
+
4
+ ONIG_VERSION=5.15.0
5
+
6
+ show_usage()
7
+ {
8
+ cat <<EOF
9
+ Usage: onig-config [OPTION]
10
+
11
+ Values for OPTION are:
12
+ --prefix[=DIR] change prefix to DIR
13
+ --prefix print prefix
14
+ --exec-prefix[=DIR] change exec_prefix to DIR
15
+ --exec-prefix print exec_prefix
16
+ --cflags print C compiler flags
17
+ --libs print library information
18
+ --version print oniguruma version
19
+ --help print this help
20
+
21
+ EOF
22
+
23
+ exit 1
24
+ }
25
+
26
+ if test $# -eq 0; then
27
+ show_usage
28
+ fi
29
+
30
+ prefix=/home/kou/work/c/groonga.clean/packages/windows/dist-x86
31
+ exec_prefix=${prefix}
32
+ is_set_exec_prefix=no
33
+
34
+ while test $# -gt 0; do
35
+ case "$1" in
36
+ -*=*) val=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'`
37
+ ;;
38
+ *) val=
39
+ ;;
40
+ esac
41
+
42
+ case $1 in
43
+ --prefix=*)
44
+ prefix=$val
45
+ if test $is_set_exec_prefix = no ; then
46
+ exec_prefix=$val
47
+ fi
48
+ ;;
49
+ --prefix)
50
+ echo $prefix
51
+ ;;
52
+ --exec-prefix=*)
53
+ exec_prefix=$val
54
+ is_set_exec_prefix=yes
55
+ ;;
56
+ --exec-prefix)
57
+ echo $exec_prefix
58
+ ;;
59
+ --cflags)
60
+ if test ${prefix}/include != /usr/include ; then
61
+ show_includedir=-I${prefix}/include
62
+ fi
63
+ echo $show_includedir
64
+ ;;
65
+ --libs)
66
+ echo -L${exec_prefix}/lib -lonig
67
+ ;;
68
+ --version)
69
+ echo $ONIG_VERSION
70
+ ;;
71
+ *)
72
+ show_usage
73
+ ;;
74
+ esac
75
+ shift
76
+ done
77
+
78
+ # END
@@ -0,0 +1,85 @@
1
+ #ifndef ONIGGNU_H
2
+ #define ONIGGNU_H
3
+ /**********************************************************************
4
+ oniggnu.h - Oniguruma (regular expression library)
5
+ **********************************************************************/
6
+ /*-
7
+ * Copyright (c) 2002-2005 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
8
+ * All rights reserved.
9
+ *
10
+ * Redistribution and use in source and binary forms, with or without
11
+ * modification, are permitted provided that the following conditions
12
+ * are met:
13
+ * 1. Redistributions of source code must retain the above copyright
14
+ * notice, this list of conditions and the following disclaimer.
15
+ * 2. Redistributions in binary form must reproduce the above copyright
16
+ * notice, this list of conditions and the following disclaimer in the
17
+ * documentation and/or other materials provided with the distribution.
18
+ *
19
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29
+ * SUCH DAMAGE.
30
+ */
31
+
32
+ #include "oniguruma.h"
33
+
34
+ #ifdef __cplusplus
35
+ extern "C" {
36
+ #endif
37
+
38
+ #define RE_MBCTYPE_ASCII 0
39
+ #define RE_MBCTYPE_EUC 1
40
+ #define RE_MBCTYPE_SJIS 2
41
+ #define RE_MBCTYPE_UTF8 3
42
+
43
+ /* GNU regex options */
44
+ #ifndef RE_NREGS
45
+ #define RE_NREGS ONIG_NREGION
46
+ #endif
47
+
48
+ #define RE_OPTION_IGNORECASE ONIG_OPTION_IGNORECASE
49
+ #define RE_OPTION_EXTENDED ONIG_OPTION_EXTEND
50
+ #define RE_OPTION_MULTILINE ONIG_OPTION_MULTILINE
51
+ #define RE_OPTION_SINGLELINE ONIG_OPTION_SINGLELINE
52
+ #define RE_OPTION_LONGEST ONIG_OPTION_FIND_LONGEST
53
+ #define RE_OPTION_POSIXLINE (RE_OPTION_MULTILINE|RE_OPTION_SINGLELINE)
54
+ #define RE_OPTION_FIND_NOT_EMPTY ONIG_OPTION_FIND_NOT_EMPTY
55
+ #define RE_OPTION_NEGATE_SINGLELINE ONIG_OPTION_NEGATE_SINGLELINE
56
+ #define RE_OPTION_DONT_CAPTURE_GROUP ONIG_OPTION_DONT_CAPTURE_GROUP
57
+ #define RE_OPTION_CAPTURE_GROUP ONIG_OPTION_CAPTURE_GROUP
58
+
59
+
60
+ ONIG_EXTERN
61
+ void re_mbcinit P_((int));
62
+ ONIG_EXTERN
63
+ int re_compile_pattern P_((const char*, int, struct re_pattern_buffer*, char* err_buf));
64
+ ONIG_EXTERN
65
+ int re_recompile_pattern P_((const char*, int, struct re_pattern_buffer*, char* err_buf));
66
+ ONIG_EXTERN
67
+ void re_free_pattern P_((struct re_pattern_buffer*));
68
+ ONIG_EXTERN
69
+ int re_adjust_startpos P_((struct re_pattern_buffer*, const char*, int, int, int));
70
+ ONIG_EXTERN
71
+ int re_search P_((struct re_pattern_buffer*, const char*, int, int, int, struct re_registers*));
72
+ ONIG_EXTERN
73
+ int re_match P_((struct re_pattern_buffer*, const char *, int, int, struct re_registers*));
74
+ ONIG_EXTERN
75
+ void re_set_casetable P_((const char*));
76
+ ONIG_EXTERN
77
+ void re_free_registers P_((struct re_registers*));
78
+ ONIG_EXTERN
79
+ int re_alloc_pattern P_((struct re_pattern_buffer**)); /* added */
80
+
81
+ #ifdef __cplusplus
82
+ }
83
+ #endif
84
+
85
+ #endif /* ONIGGNU_H */
@@ -0,0 +1,169 @@
1
+ #ifndef ONIGPOSIX_H
2
+ #define ONIGPOSIX_H
3
+ /**********************************************************************
4
+ onigposix.h - Oniguruma (regular expression library)
5
+ **********************************************************************/
6
+ /*-
7
+ * Copyright (c) 2002-2005 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
8
+ * All rights reserved.
9
+ *
10
+ * Redistribution and use in source and binary forms, with or without
11
+ * modification, are permitted provided that the following conditions
12
+ * are met:
13
+ * 1. Redistributions of source code must retain the above copyright
14
+ * notice, this list of conditions and the following disclaimer.
15
+ * 2. Redistributions in binary form must reproduce the above copyright
16
+ * notice, this list of conditions and the following disclaimer in the
17
+ * documentation and/or other materials provided with the distribution.
18
+ *
19
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29
+ * SUCH DAMAGE.
30
+ */
31
+ #include <stdlib.h>
32
+
33
+ #ifdef __cplusplus
34
+ extern "C" {
35
+ #endif
36
+
37
+ /* options */
38
+ #define REG_ICASE (1<<0)
39
+ #define REG_NEWLINE (1<<1)
40
+ #define REG_NOTBOL (1<<2)
41
+ #define REG_NOTEOL (1<<3)
42
+ #define REG_EXTENDED (1<<4) /* if not set, Basic Onigular Expression */
43
+ #define REG_NOSUB (1<<5)
44
+
45
+ /* POSIX error codes */
46
+ #define REG_NOMATCH 1
47
+ #define REG_BADPAT 2
48
+ #define REG_ECOLLATE 3
49
+ #define REG_ECTYPE 4
50
+ #define REG_EESCAPE 5
51
+ #define REG_ESUBREG 6
52
+ #define REG_EBRACK 7
53
+ #define REG_EPAREN 8
54
+ #define REG_EBRACE 9
55
+ #define REG_BADBR 10
56
+ #define REG_ERANGE 11
57
+ #define REG_ESPACE 12
58
+ #define REG_BADRPT 13
59
+
60
+ /* extended error codes */
61
+ #define REG_EONIG_INTERNAL 14
62
+ #define REG_EONIG_BADWC 15
63
+ #define REG_EONIG_BADARG 16
64
+ #define REG_EONIG_THREAD 17
65
+
66
+ /* character encodings (for reg_set_encoding()) */
67
+ #define REG_POSIX_ENCODING_ASCII 0
68
+ #define REG_POSIX_ENCODING_EUC_JP 1
69
+ #define REG_POSIX_ENCODING_SJIS 2
70
+ #define REG_POSIX_ENCODING_UTF8 3
71
+ #define REG_POSIX_ENCODING_UTF16_BE 4
72
+ #define REG_POSIX_ENCODING_UTF16_LE 5
73
+
74
+
75
+ typedef int regoff_t;
76
+
77
+ typedef struct {
78
+ regoff_t rm_so;
79
+ regoff_t rm_eo;
80
+ } regmatch_t;
81
+
82
+ /* POSIX regex_t */
83
+ typedef struct {
84
+ void* onig; /* Oniguruma regex_t* */
85
+ size_t re_nsub;
86
+ int comp_options;
87
+ } regex_t;
88
+
89
+
90
+ #ifndef P_
91
+ #if defined(__STDC__) || defined(_WIN32)
92
+ # define P_(args) args
93
+ #else
94
+ # define P_(args) ()
95
+ #endif
96
+ #endif
97
+
98
+ #ifndef ONIG_EXTERN
99
+ #if defined(_WIN32) && !defined(__GNUC__)
100
+ #if defined(EXPORT)
101
+ #define ONIG_EXTERN extern __declspec(dllexport)
102
+ #else
103
+ #define ONIG_EXTERN extern __declspec(dllimport)
104
+ #endif
105
+ #endif
106
+ #endif
107
+
108
+ #ifndef ONIG_EXTERN
109
+ #define ONIG_EXTERN extern
110
+ #endif
111
+
112
+ #ifndef ONIGURUMA_H
113
+ typedef unsigned int OnigOptionType;
114
+
115
+ /* syntax */
116
+ typedef struct {
117
+ unsigned int op;
118
+ unsigned int op2;
119
+ unsigned int behavior;
120
+ OnigOptionType options; /* default option */
121
+ } OnigSyntaxType;
122
+
123
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;
124
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;
125
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;
126
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;
127
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;
128
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;
129
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;
130
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;
131
+
132
+ /* predefined syntaxes (see regsyntax.c) */
133
+ #define ONIG_SYNTAX_POSIX_BASIC (&OnigSyntaxPosixBasic)
134
+ #define ONIG_SYNTAX_POSIX_EXTENDED (&OnigSyntaxPosixExtended)
135
+ #define ONIG_SYNTAX_EMACS (&OnigSyntaxEmacs)
136
+ #define ONIG_SYNTAX_GREP (&OnigSyntaxGrep)
137
+ #define ONIG_SYNTAX_GNU_REGEX (&OnigSyntaxGnuRegex)
138
+ #define ONIG_SYNTAX_JAVA (&OnigSyntaxJava)
139
+ #define ONIG_SYNTAX_PERL (&OnigSyntaxPerl)
140
+ #define ONIG_SYNTAX_RUBY (&OnigSyntaxRuby)
141
+ /* default syntax */
142
+ #define ONIG_SYNTAX_DEFAULT OnigDefaultSyntax
143
+
144
+ ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;
145
+
146
+ ONIG_EXTERN int onig_set_default_syntax P_((OnigSyntaxType* syntax));
147
+ ONIG_EXTERN void onig_copy_syntax P_((OnigSyntaxType* to, OnigSyntaxType* from));
148
+ ONIG_EXTERN const char* onig_version P_((void));
149
+ ONIG_EXTERN const char* onig_copyright P_((void));
150
+
151
+ #endif /* ONIGURUMA_H */
152
+
153
+
154
+ ONIG_EXTERN int regcomp P_((regex_t* reg, const char* pat, int options));
155
+ ONIG_EXTERN int regexec P_((regex_t* reg, const char* str, size_t nmatch, regmatch_t* matches, int options));
156
+ ONIG_EXTERN void regfree P_((regex_t* reg));
157
+ ONIG_EXTERN size_t regerror P_((int code, const regex_t* reg, char* buf, size_t size));
158
+
159
+ /* extended API */
160
+ ONIG_EXTERN void reg_set_encoding P_((int enc));
161
+ ONIG_EXTERN int reg_name_to_group_numbers P_((regex_t* reg, const unsigned char* name, const unsigned char* name_end, int** nums));
162
+ ONIG_EXTERN int reg_foreach_name P_((regex_t* reg, int (*func)(const unsigned char*, const unsigned char*,int,int*,regex_t*,void*), void* arg));
163
+ ONIG_EXTERN int reg_number_of_names P_((regex_t* reg));
164
+
165
+ #ifdef __cplusplus
166
+ }
167
+ #endif
168
+
169
+ #endif /* ONIGPOSIX_H */
@@ -0,0 +1,870 @@
1
+ #ifndef ONIGURUMA_H
2
+ #define ONIGURUMA_H
3
+ /**********************************************************************
4
+ oniguruma.h - Onigmo (Oniguruma-mod) (regular expression library)
5
+ **********************************************************************/
6
+ /*-
7
+ * Copyright (c) 2002-2009 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
8
+ * Copyright (c) 2011-2014 K.Takata <kentkt AT csc DOT jp>
9
+ * All rights reserved.
10
+ *
11
+ * Redistribution and use in source and binary forms, with or without
12
+ * modification, are permitted provided that the following conditions
13
+ * are met:
14
+ * 1. Redistributions of source code must retain the above copyright
15
+ * notice, this list of conditions and the following disclaimer.
16
+ * 2. Redistributions in binary form must reproduce the above copyright
17
+ * notice, this list of conditions and the following disclaimer in the
18
+ * documentation and/or other materials provided with the distribution.
19
+ *
20
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30
+ * SUCH DAMAGE.
31
+ */
32
+
33
+ #ifdef __cplusplus
34
+ extern "C" {
35
+ #endif
36
+
37
+ #define ONIGURUMA
38
+ #define ONIGURUMA_VERSION_MAJOR 5
39
+ #define ONIGURUMA_VERSION_MINOR 15
40
+ #define ONIGURUMA_VERSION_TEENY 0
41
+
42
+ #ifdef __cplusplus
43
+ # ifndef HAVE_PROTOTYPES
44
+ # define HAVE_PROTOTYPES 1
45
+ # endif
46
+ # ifndef HAVE_STDARG_PROTOTYPES
47
+ # define HAVE_STDARG_PROTOTYPES 1
48
+ # endif
49
+ #endif
50
+
51
+ /* escape Mac OS X/Xcode 2.4/gcc 4.0.1 problem */
52
+ #if defined(__APPLE__) && defined(__GNUC__) && __GNUC__ >= 4
53
+ # ifndef HAVE_STDARG_PROTOTYPES
54
+ # define HAVE_STDARG_PROTOTYPES 1
55
+ # endif
56
+ #endif
57
+
58
+ #ifdef HAVE_STDARG_H
59
+ # ifndef HAVE_STDARG_PROTOTYPES
60
+ # define HAVE_STDARG_PROTOTYPES 1
61
+ # endif
62
+ #endif
63
+
64
+ #ifndef P_
65
+ #if defined(__STDC__) || defined(_WIN32)
66
+ # define P_(args) args
67
+ #else
68
+ # define P_(args) ()
69
+ #endif
70
+ #endif
71
+
72
+ #ifndef PV_
73
+ #ifdef HAVE_STDARG_PROTOTYPES
74
+ # define PV_(args) args
75
+ #else
76
+ # define PV_(args) ()
77
+ #endif
78
+ #endif
79
+
80
+ #ifndef ONIG_EXTERN
81
+ #if defined(_WIN32) && !defined(__GNUC__)
82
+ #if defined(EXPORT) || defined(RUBY_EXPORT)
83
+ #define ONIG_EXTERN extern __declspec(dllexport)
84
+ #else
85
+ #define ONIG_EXTERN extern __declspec(dllimport)
86
+ #endif
87
+ #endif
88
+ #endif
89
+
90
+ #ifndef ONIG_EXTERN
91
+ #define ONIG_EXTERN extern
92
+ #endif
93
+
94
+ #include <stddef.h> /* for size_t */
95
+
96
+ /* PART: character encoding */
97
+
98
+ #ifndef ONIG_ESCAPE_UCHAR_COLLISION
99
+ #define UChar OnigUChar
100
+ #endif
101
+
102
+ typedef unsigned char OnigUChar;
103
+ typedef unsigned int OnigCodePoint;
104
+ typedef unsigned int OnigCtype;
105
+ typedef size_t OnigDistance;
106
+ typedef ptrdiff_t OnigPosition;
107
+
108
+ #define ONIG_INFINITE_DISTANCE ~((OnigDistance )0)
109
+
110
+ typedef unsigned int OnigCaseFoldType; /* case fold flag */
111
+
112
+ ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;
113
+
114
+ /* #define ONIGENC_CASE_FOLD_HIRAGANA_KATAKANA (1<<1) */
115
+ /* #define ONIGENC_CASE_FOLD_KATAKANA_WIDTH (1<<2) */
116
+ #define ONIGENC_CASE_FOLD_TURKISH_AZERI (1<<20)
117
+ #define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR (1<<30)
118
+
119
+ #define ONIGENC_CASE_FOLD_MIN INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR
120
+ #define ONIGENC_CASE_FOLD_DEFAULT OnigDefaultCaseFoldFlag
121
+
122
+
123
+ #define ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN 3
124
+ #define ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM 13
125
+ /* 13 => Unicode:0x1ffc */
126
+
127
+ /* code range */
128
+ #define ONIGENC_CODE_RANGE_NUM(range) ((int )range[0])
129
+ #define ONIGENC_CODE_RANGE_FROM(range,i) range[((i)*2) + 1]
130
+ #define ONIGENC_CODE_RANGE_TO(range,i) range[((i)*2) + 2]
131
+
132
+ typedef struct {
133
+ int byte_len; /* argument(original) character(s) byte length */
134
+ int code_len; /* number of code */
135
+ OnigCodePoint code[ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN];
136
+ } OnigCaseFoldCodeItem;
137
+
138
+ typedef struct {
139
+ OnigCodePoint esc;
140
+ OnigCodePoint anychar;
141
+ OnigCodePoint anytime;
142
+ OnigCodePoint zero_or_one_time;
143
+ OnigCodePoint one_or_more_time;
144
+ OnigCodePoint anychar_anytime;
145
+ } OnigMetaCharTableType;
146
+
147
+ typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);
148
+
149
+ typedef struct OnigEncodingTypeST {
150
+ int (*mbc_enc_len)(const OnigUChar* p);
151
+ const char* name;
152
+ int max_enc_len;
153
+ int min_enc_len;
154
+ int (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);
155
+ OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);
156
+ int (*code_to_mbclen)(OnigCodePoint code);
157
+ int (*code_to_mbc)(OnigCodePoint code, OnigUChar *buf);
158
+ int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to);
159
+ int (*apply_all_case_fold)(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg);
160
+ int (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem acs[]);
161
+ int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);
162
+ int (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype);
163
+ int (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]);
164
+ OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);
165
+ int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);
166
+ unsigned int flags;
167
+ } OnigEncodingType;
168
+
169
+ typedef OnigEncodingType* OnigEncoding;
170
+
171
+ ONIG_EXTERN OnigEncodingType OnigEncodingASCII;
172
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_1;
173
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_2;
174
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_3;
175
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_4;
176
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_5;
177
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_6;
178
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_7;
179
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_8;
180
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_9;
181
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_10;
182
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_11;
183
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_13;
184
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_14;
185
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_15;
186
+ ONIG_EXTERN OnigEncodingType OnigEncodingISO_8859_16;
187
+ ONIG_EXTERN OnigEncodingType OnigEncodingUTF8;
188
+ ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_BE;
189
+ ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_LE;
190
+ ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_BE;
191
+ ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_LE;
192
+ ONIG_EXTERN OnigEncodingType OnigEncodingEUC_JP;
193
+ ONIG_EXTERN OnigEncodingType OnigEncodingEUC_TW;
194
+ ONIG_EXTERN OnigEncodingType OnigEncodingEUC_KR;
195
+ ONIG_EXTERN OnigEncodingType OnigEncodingEUC_CN;
196
+ ONIG_EXTERN OnigEncodingType OnigEncodingSJIS;
197
+ ONIG_EXTERN OnigEncodingType OnigEncodingCP932;
198
+ ONIG_EXTERN OnigEncodingType OnigEncodingKOI8;
199
+ ONIG_EXTERN OnigEncodingType OnigEncodingKOI8_R;
200
+ ONIG_EXTERN OnigEncodingType OnigEncodingCP1251;
201
+ ONIG_EXTERN OnigEncodingType OnigEncodingBIG5;
202
+ ONIG_EXTERN OnigEncodingType OnigEncodingGB18030;
203
+
204
+ #define ONIG_ENCODING_ASCII (&OnigEncodingASCII)
205
+ #define ONIG_ENCODING_ISO_8859_1 (&OnigEncodingISO_8859_1)
206
+ #define ONIG_ENCODING_ISO_8859_2 (&OnigEncodingISO_8859_2)
207
+ #define ONIG_ENCODING_ISO_8859_3 (&OnigEncodingISO_8859_3)
208
+ #define ONIG_ENCODING_ISO_8859_4 (&OnigEncodingISO_8859_4)
209
+ #define ONIG_ENCODING_ISO_8859_5 (&OnigEncodingISO_8859_5)
210
+ #define ONIG_ENCODING_ISO_8859_6 (&OnigEncodingISO_8859_6)
211
+ #define ONIG_ENCODING_ISO_8859_7 (&OnigEncodingISO_8859_7)
212
+ #define ONIG_ENCODING_ISO_8859_8 (&OnigEncodingISO_8859_8)
213
+ #define ONIG_ENCODING_ISO_8859_9 (&OnigEncodingISO_8859_9)
214
+ #define ONIG_ENCODING_ISO_8859_10 (&OnigEncodingISO_8859_10)
215
+ #define ONIG_ENCODING_ISO_8859_11 (&OnigEncodingISO_8859_11)
216
+ #define ONIG_ENCODING_ISO_8859_13 (&OnigEncodingISO_8859_13)
217
+ #define ONIG_ENCODING_ISO_8859_14 (&OnigEncodingISO_8859_14)
218
+ #define ONIG_ENCODING_ISO_8859_15 (&OnigEncodingISO_8859_15)
219
+ #define ONIG_ENCODING_ISO_8859_16 (&OnigEncodingISO_8859_16)
220
+ #define ONIG_ENCODING_UTF8 (&OnigEncodingUTF8)
221
+ #define ONIG_ENCODING_UTF16_BE (&OnigEncodingUTF16_BE)
222
+ #define ONIG_ENCODING_UTF16_LE (&OnigEncodingUTF16_LE)
223
+ #define ONIG_ENCODING_UTF32_BE (&OnigEncodingUTF32_BE)
224
+ #define ONIG_ENCODING_UTF32_LE (&OnigEncodingUTF32_LE)
225
+ #define ONIG_ENCODING_EUC_JP (&OnigEncodingEUC_JP)
226
+ #define ONIG_ENCODING_EUC_TW (&OnigEncodingEUC_TW)
227
+ #define ONIG_ENCODING_EUC_KR (&OnigEncodingEUC_KR)
228
+ #define ONIG_ENCODING_EUC_CN (&OnigEncodingEUC_CN)
229
+ #define ONIG_ENCODING_SJIS (&OnigEncodingSJIS)
230
+ #define ONIG_ENCODING_CP932 (&OnigEncodingCP932)
231
+ #define ONIG_ENCODING_KOI8 (&OnigEncodingKOI8)
232
+ #define ONIG_ENCODING_KOI8_R (&OnigEncodingKOI8_R)
233
+ #define ONIG_ENCODING_CP1251 (&OnigEncodingCP1251)
234
+ #define ONIG_ENCODING_BIG5 (&OnigEncodingBIG5)
235
+ #define ONIG_ENCODING_GB18030 (&OnigEncodingGB18030)
236
+
237
+ #define ONIG_ENCODING_UNDEF ((OnigEncoding )0)
238
+
239
+
240
+ /* work size */
241
+ #define ONIGENC_CODE_TO_MBC_MAXLEN 7
242
+ #define ONIGENC_MBC_CASE_FOLD_MAXLEN 18
243
+ /* 18: 6(max-byte) * 3(case-fold chars) */
244
+
245
+ /* character types */
246
+ #define ONIGENC_CTYPE_NEWLINE 0
247
+ #define ONIGENC_CTYPE_ALPHA 1
248
+ #define ONIGENC_CTYPE_BLANK 2
249
+ #define ONIGENC_CTYPE_CNTRL 3
250
+ #define ONIGENC_CTYPE_DIGIT 4
251
+ #define ONIGENC_CTYPE_GRAPH 5
252
+ #define ONIGENC_CTYPE_LOWER 6
253
+ #define ONIGENC_CTYPE_PRINT 7
254
+ #define ONIGENC_CTYPE_PUNCT 8
255
+ #define ONIGENC_CTYPE_SPACE 9
256
+ #define ONIGENC_CTYPE_UPPER 10
257
+ #define ONIGENC_CTYPE_XDIGIT 11
258
+ #define ONIGENC_CTYPE_WORD 12
259
+ #define ONIGENC_CTYPE_ALNUM 13 /* alpha || digit */
260
+ #define ONIGENC_CTYPE_ASCII 14
261
+ #define ONIGENC_MAX_STD_CTYPE ONIGENC_CTYPE_ASCII
262
+
263
+ /* flags */
264
+ #define ONIGENC_FLAG_NONE 0U
265
+ #define ONIGENC_FLAG_UNICODE 1U
266
+
267
+
268
+ #define onig_enc_len(enc,p,end) ONIGENC_MBC_ENC_LEN(enc,p)
269
+
270
+ #define ONIGENC_IS_UNDEF(enc) ((enc) == ONIG_ENCODING_UNDEF)
271
+ #define ONIGENC_IS_SINGLEBYTE(enc) (ONIGENC_MBC_MAXLEN(enc) == 1)
272
+ #define ONIGENC_IS_MBC_HEAD(enc,p) (ONIGENC_MBC_ENC_LEN(enc,p) != 1)
273
+ #define ONIGENC_IS_MBC_ASCII(p) (*(p) < 128)
274
+ #define ONIGENC_IS_CODE_ASCII(code) ((code) < 128)
275
+ #define ONIGENC_IS_MBC_WORD(enc,s,end) \
276
+ ONIGENC_IS_CODE_WORD(enc,ONIGENC_MBC_TO_CODE(enc,s,end))
277
+ #define ONIGENC_IS_MBC_ASCII_WORD(enc,s,end) \
278
+ onigenc_ascii_is_code_ctype( \
279
+ ONIGENC_MBC_TO_CODE(enc,s,end),ONIGENC_CTYPE_WORD)
280
+ #define ONIGENC_IS_UNICODE(enc) ((enc)->flags & ONIGENC_FLAG_UNICODE)
281
+
282
+
283
+ #define ONIGENC_NAME(enc) ((enc)->name)
284
+
285
+ #define ONIGENC_MBC_CASE_FOLD(enc,flag,pp,end,buf) \
286
+ (enc)->mbc_case_fold(flag,(const OnigUChar** )pp,end,buf)
287
+ #define ONIGENC_IS_ALLOWED_REVERSE_MATCH(enc,s,end) \
288
+ (enc)->is_allowed_reverse_match(s,end)
289
+ #define ONIGENC_LEFT_ADJUST_CHAR_HEAD(enc,start,s) \
290
+ (enc)->left_adjust_char_head(start, s)
291
+ #define ONIGENC_APPLY_ALL_CASE_FOLD(enc,case_fold_flag,f,arg) \
292
+ (enc)->apply_all_case_fold(case_fold_flag,f,arg)
293
+ #define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(enc,case_fold_flag,p,end,acs) \
294
+ (enc)->get_case_fold_codes_by_str(case_fold_flag,p,end,acs)
295
+ #define ONIGENC_STEP_BACK(enc,start,s,n) \
296
+ onigenc_step_back((enc),(start),(s),(n))
297
+
298
+ #define ONIGENC_MBC_ENC_LEN(enc,p) (enc)->mbc_enc_len(p)
299
+ #define ONIGENC_MBC_MAXLEN(enc) ((enc)->max_enc_len)
300
+ #define ONIGENC_MBC_MAXLEN_DIST(enc) ONIGENC_MBC_MAXLEN(enc)
301
+ #define ONIGENC_MBC_MINLEN(enc) ((enc)->min_enc_len)
302
+ #define ONIGENC_IS_MBC_NEWLINE(enc,p,end) (enc)->is_mbc_newline((p),(end))
303
+ #define ONIGENC_MBC_TO_CODE(enc,p,end) (enc)->mbc_to_code((p),(end))
304
+ #define ONIGENC_CODE_TO_MBCLEN(enc,code) (enc)->code_to_mbclen(code)
305
+ #define ONIGENC_CODE_TO_MBC(enc,code,buf) (enc)->code_to_mbc(code,buf)
306
+ #define ONIGENC_PROPERTY_NAME_TO_CTYPE(enc,p,end) \
307
+ (enc)->property_name_to_ctype(enc,p,end)
308
+
309
+ #define ONIGENC_IS_CODE_CTYPE(enc,code,ctype) (enc)->is_code_ctype(code,ctype)
310
+
311
+ #define ONIGENC_IS_CODE_NEWLINE(enc,code) \
312
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_NEWLINE)
313
+ #define ONIGENC_IS_CODE_GRAPH(enc,code) \
314
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_GRAPH)
315
+ #define ONIGENC_IS_CODE_PRINT(enc,code) \
316
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_PRINT)
317
+ #define ONIGENC_IS_CODE_ALNUM(enc,code) \
318
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_ALNUM)
319
+ #define ONIGENC_IS_CODE_ALPHA(enc,code) \
320
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_ALPHA)
321
+ #define ONIGENC_IS_CODE_LOWER(enc,code) \
322
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_LOWER)
323
+ #define ONIGENC_IS_CODE_UPPER(enc,code) \
324
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_UPPER)
325
+ #define ONIGENC_IS_CODE_CNTRL(enc,code) \
326
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_CNTRL)
327
+ #define ONIGENC_IS_CODE_PUNCT(enc,code) \
328
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_PUNCT)
329
+ #define ONIGENC_IS_CODE_SPACE(enc,code) \
330
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_SPACE)
331
+ #define ONIGENC_IS_CODE_BLANK(enc,code) \
332
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_BLANK)
333
+ #define ONIGENC_IS_CODE_DIGIT(enc,code) \
334
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_DIGIT)
335
+ #define ONIGENC_IS_CODE_XDIGIT(enc,code) \
336
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_XDIGIT)
337
+ #define ONIGENC_IS_CODE_WORD(enc,code) \
338
+ ONIGENC_IS_CODE_CTYPE(enc,code,ONIGENC_CTYPE_WORD)
339
+
340
+ #define ONIGENC_GET_CTYPE_CODE_RANGE(enc,ctype,sbout,ranges) \
341
+ (enc)->get_ctype_code_range(ctype,sbout,ranges)
342
+
343
+ ONIG_EXTERN
344
+ OnigUChar* onigenc_step_back P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, int n));
345
+
346
+
347
+ /* encoding API */
348
+ ONIG_EXTERN
349
+ int onigenc_init P_((void));
350
+ ONIG_EXTERN
351
+ int onigenc_set_default_encoding P_((OnigEncoding enc));
352
+ ONIG_EXTERN
353
+ OnigEncoding onigenc_get_default_encoding P_((void));
354
+ ONIG_EXTERN
355
+ void onigenc_set_default_caseconv_table P_((const OnigUChar* table));
356
+ ONIG_EXTERN
357
+ OnigUChar* onigenc_get_right_adjust_char_head_with_prev P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, const OnigUChar** prev));
358
+ ONIG_EXTERN
359
+ OnigUChar* onigenc_get_prev_char_head P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s));
360
+ ONIG_EXTERN
361
+ OnigUChar* onigenc_get_left_adjust_char_head P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s));
362
+ ONIG_EXTERN
363
+ OnigUChar* onigenc_get_right_adjust_char_head P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s));
364
+ ONIG_EXTERN
365
+ int onigenc_strlen P_((OnigEncoding enc, const OnigUChar* p, const OnigUChar* end));
366
+ ONIG_EXTERN
367
+ int onigenc_strlen_null P_((OnigEncoding enc, const OnigUChar* p));
368
+ ONIG_EXTERN
369
+ int onigenc_str_bytelen_null P_((OnigEncoding enc, const OnigUChar* p));
370
+
371
+
372
+
373
+ /* PART: regular expression */
374
+
375
+ /* config parameters */
376
+ #define ONIG_NREGION 10
377
+ #define ONIG_MAX_BACKREF_NUM 1000
378
+ #define ONIG_MAX_CAPTURE_GROUP_NUM 32767
379
+ #define ONIG_MAX_REPEAT_NUM 100000
380
+ #define ONIG_MAX_MULTI_BYTE_RANGES_NUM 10000
381
+ /* constants */
382
+ #define ONIG_MAX_ERROR_MESSAGE_LEN 90
383
+
384
+ typedef unsigned int OnigOptionType;
385
+
386
+ #define ONIG_OPTION_DEFAULT ONIG_OPTION_NONE
387
+
388
+ /* options */
389
+ #define ONIG_OPTION_NONE 0U
390
+ #define ONIG_OPTION_IGNORECASE 1U
391
+ #define ONIG_OPTION_EXTEND (ONIG_OPTION_IGNORECASE << 1)
392
+ #define ONIG_OPTION_MULTILINE (ONIG_OPTION_EXTEND << 1)
393
+ #define ONIG_OPTION_DOTALL ONIG_OPTION_MULTILINE
394
+ #define ONIG_OPTION_SINGLELINE (ONIG_OPTION_MULTILINE << 1)
395
+ #define ONIG_OPTION_FIND_LONGEST (ONIG_OPTION_SINGLELINE << 1)
396
+ #define ONIG_OPTION_FIND_NOT_EMPTY (ONIG_OPTION_FIND_LONGEST << 1)
397
+ #define ONIG_OPTION_NEGATE_SINGLELINE (ONIG_OPTION_FIND_NOT_EMPTY << 1)
398
+ #define ONIG_OPTION_DONT_CAPTURE_GROUP (ONIG_OPTION_NEGATE_SINGLELINE << 1)
399
+ #define ONIG_OPTION_CAPTURE_GROUP (ONIG_OPTION_DONT_CAPTURE_GROUP << 1)
400
+ /* options (search time) */
401
+ #define ONIG_OPTION_NOTBOL (ONIG_OPTION_CAPTURE_GROUP << 1)
402
+ #define ONIG_OPTION_NOTEOL (ONIG_OPTION_NOTBOL << 1)
403
+ #define ONIG_OPTION_POSIX_REGION (ONIG_OPTION_NOTEOL << 1)
404
+ /* options (ctype range) */
405
+ #define ONIG_OPTION_ASCII_RANGE (ONIG_OPTION_POSIX_REGION << 1)
406
+ #define ONIG_OPTION_POSIX_BRACKET_ALL_RANGE (ONIG_OPTION_ASCII_RANGE << 1)
407
+ #define ONIG_OPTION_WORD_BOUND_ALL_RANGE (ONIG_OPTION_POSIX_BRACKET_ALL_RANGE << 1)
408
+ /* options (newline) */
409
+ #define ONIG_OPTION_NEWLINE_CRLF (ONIG_OPTION_WORD_BOUND_ALL_RANGE << 1)
410
+ #define ONIG_OPTION_NOTBOS (ONIG_OPTION_NEWLINE_CRLF << 1)
411
+ #define ONIG_OPTION_NOTEOS (ONIG_OPTION_NOTBOS << 1)
412
+ #define ONIG_OPTION_MAXBIT ONIG_OPTION_NOTEOS /* limit */
413
+
414
+ #define ONIG_OPTION_ON(options,regopt) ((options) |= (regopt))
415
+ #define ONIG_OPTION_OFF(options,regopt) ((options) &= ~(regopt))
416
+ #define ONIG_IS_OPTION_ON(options,option) ((options) & (option))
417
+
418
+ /* syntax */
419
+ typedef struct {
420
+ unsigned int op;
421
+ unsigned int op2;
422
+ unsigned int behavior;
423
+ OnigOptionType options; /* default option */
424
+ OnigMetaCharTableType meta_char_table;
425
+ } OnigSyntaxType;
426
+
427
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxASIS;
428
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;
429
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;
430
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;
431
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;
432
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;
433
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;
434
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl58;
435
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl58_NG;
436
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;
437
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;
438
+ ONIG_EXTERN OnigSyntaxType OnigSyntaxPython;
439
+
440
+ /* predefined syntaxes (see regsyntax.c) */
441
+ #define ONIG_SYNTAX_ASIS (&OnigSyntaxASIS)
442
+ #define ONIG_SYNTAX_POSIX_BASIC (&OnigSyntaxPosixBasic)
443
+ #define ONIG_SYNTAX_POSIX_EXTENDED (&OnigSyntaxPosixExtended)
444
+ #define ONIG_SYNTAX_EMACS (&OnigSyntaxEmacs)
445
+ #define ONIG_SYNTAX_GREP (&OnigSyntaxGrep)
446
+ #define ONIG_SYNTAX_GNU_REGEX (&OnigSyntaxGnuRegex)
447
+ #define ONIG_SYNTAX_JAVA (&OnigSyntaxJava)
448
+ #define ONIG_SYNTAX_PERL58 (&OnigSyntaxPerl58)
449
+ #define ONIG_SYNTAX_PERL58_NG (&OnigSyntaxPerl58_NG)
450
+ #define ONIG_SYNTAX_PERL (&OnigSyntaxPerl)
451
+ #define ONIG_SYNTAX_RUBY (&OnigSyntaxRuby)
452
+ #define ONIG_SYNTAX_PYTHON (&OnigSyntaxPython)
453
+
454
+ /* default syntax */
455
+ ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;
456
+ #define ONIG_SYNTAX_DEFAULT OnigDefaultSyntax
457
+
458
+ /* syntax (operators) */
459
+ #define ONIG_SYN_OP_VARIABLE_META_CHARACTERS (1U<<0)
460
+ #define ONIG_SYN_OP_DOT_ANYCHAR (1U<<1) /* . */
461
+ #define ONIG_SYN_OP_ASTERISK_ZERO_INF (1U<<2) /* * */
462
+ #define ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF (1U<<3)
463
+ #define ONIG_SYN_OP_PLUS_ONE_INF (1U<<4) /* + */
464
+ #define ONIG_SYN_OP_ESC_PLUS_ONE_INF (1U<<5)
465
+ #define ONIG_SYN_OP_QMARK_ZERO_ONE (1U<<6) /* ? */
466
+ #define ONIG_SYN_OP_ESC_QMARK_ZERO_ONE (1U<<7)
467
+ #define ONIG_SYN_OP_BRACE_INTERVAL (1U<<8) /* {lower,upper} */
468
+ #define ONIG_SYN_OP_ESC_BRACE_INTERVAL (1U<<9) /* \{lower,upper\} */
469
+ #define ONIG_SYN_OP_VBAR_ALT (1U<<10) /* | */
470
+ #define ONIG_SYN_OP_ESC_VBAR_ALT (1U<<11) /* \| */
471
+ #define ONIG_SYN_OP_LPAREN_SUBEXP (1U<<12) /* (...) */
472
+ #define ONIG_SYN_OP_ESC_LPAREN_SUBEXP (1U<<13) /* \(...\) */
473
+ #define ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR (1U<<14) /* \A, \Z, \z */
474
+ #define ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR (1U<<15) /* \G */
475
+ #define ONIG_SYN_OP_DECIMAL_BACKREF (1U<<16) /* \num */
476
+ #define ONIG_SYN_OP_BRACKET_CC (1U<<17) /* [...] */
477
+ #define ONIG_SYN_OP_ESC_W_WORD (1U<<18) /* \w, \W */
478
+ #define ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END (1U<<19) /* \<. \> */
479
+ #define ONIG_SYN_OP_ESC_B_WORD_BOUND (1U<<20) /* \b, \B */
480
+ #define ONIG_SYN_OP_ESC_S_WHITE_SPACE (1U<<21) /* \s, \S */
481
+ #define ONIG_SYN_OP_ESC_D_DIGIT (1U<<22) /* \d, \D */
482
+ #define ONIG_SYN_OP_LINE_ANCHOR (1U<<23) /* ^, $ */
483
+ #define ONIG_SYN_OP_POSIX_BRACKET (1U<<24) /* [:xxxx:] */
484
+ #define ONIG_SYN_OP_QMARK_NON_GREEDY (1U<<25) /* ??,*?,+?,{n,m}? */
485
+ #define ONIG_SYN_OP_ESC_CONTROL_CHARS (1U<<26) /* \n,\r,\t,\a ... */
486
+ #define ONIG_SYN_OP_ESC_C_CONTROL (1U<<27) /* \cx */
487
+ #define ONIG_SYN_OP_ESC_OCTAL3 (1U<<28) /* \OOO */
488
+ #define ONIG_SYN_OP_ESC_X_HEX2 (1U<<29) /* \xHH */
489
+ #define ONIG_SYN_OP_ESC_X_BRACE_HEX8 (1U<<30) /* \x{7HHHHHHH} */
490
+ #define ONIG_SYN_OP_ESC_O_BRACE_OCTAL (1U<<31) /* \o{OOO} */ /* NOTIMPL */
491
+
492
+ #define ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE (1U<<0) /* \Q...\E */
493
+ #define ONIG_SYN_OP2_QMARK_GROUP_EFFECT (1U<<1) /* (?...) */
494
+ #define ONIG_SYN_OP2_OPTION_PERL (1U<<2) /* (?imsxadlu), (?-imsx), (?^imsxalu) */
495
+ #define ONIG_SYN_OP2_OPTION_RUBY (1U<<3) /* (?imxadu), (?-imx) */
496
+ #define ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT (1U<<4) /* ?+,*+,++ */
497
+ #define ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL (1U<<5) /* {n,m}+ */
498
+ #define ONIG_SYN_OP2_CCLASS_SET_OP (1U<<6) /* [...&&..[..]..] */
499
+ #define ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP (1U<<7) /* (?<name>...) */
500
+ #define ONIG_SYN_OP2_ESC_K_NAMED_BACKREF (1U<<8) /* \k<name> */
501
+ #define ONIG_SYN_OP2_ESC_G_SUBEXP_CALL (1U<<9) /* \g<name>, \g<n> */
502
+ #define ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY (1U<<10) /* (?@..),(?@<x>..) */
503
+ #define ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL (1U<<11) /* \C-x */
504
+ #define ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META (1U<<12) /* \M-x */
505
+ #define ONIG_SYN_OP2_ESC_V_VTAB (1U<<13) /* \v as VTAB */
506
+ #define ONIG_SYN_OP2_ESC_U_HEX4 (1U<<14) /* \uHHHH */
507
+ #define ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR (1U<<15) /* \`, \' */
508
+ #define ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY (1U<<16) /* \p{...}, \P{...} */
509
+ #define ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT (1U<<17) /* \p{^..}, \P{^..} */
510
+ /* #define ONIG_SYN_OP2_CHAR_PROPERTY_PREFIX_IS (1U<<18) */
511
+ #define ONIG_SYN_OP2_ESC_H_XDIGIT (1U<<19) /* \h, \H */
512
+ #define ONIG_SYN_OP2_INEFFECTIVE_ESCAPE (1U<<20) /* \ */
513
+ #define ONIG_SYN_OP2_ESC_CAPITAL_R_LINEBREAK (1U<<21) /* \R as (?>\x0D\x0A|[\x0A-\x0D\x{85}\x{2028}\x{2029}]) */
514
+ #define ONIG_SYN_OP2_ESC_CAPITAL_X_EXTENDED_GRAPHEME_CLUSTER (1U<<22) /* \X as (?>\P{M}\p{M}*) */
515
+ #define ONIG_SYN_OP2_ESC_V_VERTICAL_WHITESPACE (1U<<23) /* \v, \V -- Perl */ /* NOTIMPL */
516
+ #define ONIG_SYN_OP2_ESC_H_HORIZONTAL_WHITESPACE (1U<<24) /* \h, \H -- Perl */ /* NOTIMPL */
517
+ #define ONIG_SYN_OP2_ESC_CAPITAL_K_KEEP (1U<<25) /* \K */
518
+ #define ONIG_SYN_OP2_ESC_G_BRACE_BACKREF (1U<<26) /* \g{name}, \g{n} */
519
+ #define ONIG_SYN_OP2_QMARK_SUBEXP_CALL (1U<<27) /* (?&name), (?n), (?R), (?0) */
520
+ #define ONIG_SYN_OP2_QMARK_VBAR_BRANCH_RESET (1U<<28) /* (?|...) */ /* NOTIMPL */
521
+ #define ONIG_SYN_OP2_QMARK_LPAREN_CONDITION (1U<<29) /* (?(cond)yes...|no...) */
522
+ #define ONIG_SYN_OP2_QMARK_CAPITAL_P_NAMED_GROUP (1U<<30) /* (?P<name>...), (?P=name), (?P>name) -- Python/PCRE */
523
+ #define ONIG_SYN_OP2_OPTION_JAVA (1U<<31) /* (?idmsux), (?-idmsux) */ /* NOTIMPL */
524
+
525
+ /* syntax (behavior) */
526
+ #define ONIG_SYN_CONTEXT_INDEP_ANCHORS (1U<<31) /* not implemented */
527
+ #define ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS (1U<<0) /* ?, *, +, {n,m} */
528
+ #define ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS (1U<<1) /* error or ignore */
529
+ #define ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP (1U<<2) /* ...)... */
530
+ #define ONIG_SYN_ALLOW_INVALID_INTERVAL (1U<<3) /* {??? */
531
+ #define ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV (1U<<4) /* {,n} => {0,n} */
532
+ #define ONIG_SYN_STRICT_CHECK_BACKREF (1U<<5) /* /(\1)/,/\1()/ ..*/
533
+ #define ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND (1U<<6) /* (?<=a|bc) */
534
+ #define ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP (1U<<7) /* see doc/RE */
535
+ #define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME (1U<<8) /* (?<x>)(?<x>) */
536
+ #define ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY (1U<<9) /* a{n}?=(?:a{n})? */
537
+ #define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME_CALL (1U<<10) /* (?<x>)(?<x>)(?&x) */
538
+
539
+ /* syntax (behavior) in char class [...] */
540
+ #define ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC (1U<<20) /* [^...] */
541
+ #define ONIG_SYN_BACKSLASH_ESCAPE_IN_CC (1U<<21) /* [..\w..] etc.. */
542
+ #define ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC (1U<<22)
543
+ #define ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC (1U<<23) /* [0-9-a]=[0-9\-a] */
544
+ /* syntax (behavior) warning */
545
+ #define ONIG_SYN_WARN_CC_OP_NOT_ESCAPED (1U<<24) /* [,-,] */
546
+ #define ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT (1U<<25) /* (?:a*)+ */
547
+
548
+ /* meta character specifiers (onig_set_meta_char()) */
549
+ #define ONIG_META_CHAR_ESCAPE 0
550
+ #define ONIG_META_CHAR_ANYCHAR 1
551
+ #define ONIG_META_CHAR_ANYTIME 2
552
+ #define ONIG_META_CHAR_ZERO_OR_ONE_TIME 3
553
+ #define ONIG_META_CHAR_ONE_OR_MORE_TIME 4
554
+ #define ONIG_META_CHAR_ANYCHAR_ANYTIME 5
555
+
556
+ #define ONIG_INEFFECTIVE_META_CHAR 0
557
+
558
+ /* error codes */
559
+ #define ONIG_IS_PATTERN_ERROR(ecode) ((ecode) <= -100 && (ecode) > -1000)
560
+ /* normal return */
561
+ #define ONIG_NORMAL 0
562
+ #define ONIG_MISMATCH -1
563
+ #define ONIG_NO_SUPPORT_CONFIG -2
564
+
565
+ /* internal error */
566
+ #define ONIGERR_MEMORY -5
567
+ #define ONIGERR_TYPE_BUG -6
568
+ #define ONIGERR_PARSER_BUG -11
569
+ #define ONIGERR_STACK_BUG -12
570
+ #define ONIGERR_UNDEFINED_BYTECODE -13
571
+ #define ONIGERR_UNEXPECTED_BYTECODE -14
572
+ #define ONIGERR_MATCH_STACK_LIMIT_OVER -15
573
+ #define ONIGERR_DEFAULT_ENCODING_IS_NOT_SET -21
574
+ #define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR -22
575
+ /* general error */
576
+ #define ONIGERR_INVALID_ARGUMENT -30
577
+ /* syntax error */
578
+ #define ONIGERR_END_PATTERN_AT_LEFT_BRACE -100
579
+ #define ONIGERR_END_PATTERN_AT_LEFT_BRACKET -101
580
+ #define ONIGERR_EMPTY_CHAR_CLASS -102
581
+ #define ONIGERR_PREMATURE_END_OF_CHAR_CLASS -103
582
+ #define ONIGERR_END_PATTERN_AT_ESCAPE -104
583
+ #define ONIGERR_END_PATTERN_AT_META -105
584
+ #define ONIGERR_END_PATTERN_AT_CONTROL -106
585
+ #define ONIGERR_META_CODE_SYNTAX -108
586
+ #define ONIGERR_CONTROL_CODE_SYNTAX -109
587
+ #define ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE -110
588
+ #define ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE -111
589
+ #define ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS -112
590
+ #define ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED -113
591
+ #define ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID -114
592
+ #define ONIGERR_NESTED_REPEAT_OPERATOR -115
593
+ #define ONIGERR_UNMATCHED_CLOSE_PARENTHESIS -116
594
+ #define ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS -117
595
+ #define ONIGERR_END_PATTERN_IN_GROUP -118
596
+ #define ONIGERR_UNDEFINED_GROUP_OPTION -119
597
+ #define ONIGERR_INVALID_POSIX_BRACKET_TYPE -121
598
+ #define ONIGERR_INVALID_LOOK_BEHIND_PATTERN -122
599
+ #define ONIGERR_INVALID_REPEAT_RANGE_PATTERN -123
600
+ #define ONIGERR_INVALID_CONDITION_PATTERN -124
601
+ /* values error (syntax error) */
602
+ #define ONIGERR_TOO_BIG_NUMBER -200
603
+ #define ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE -201
604
+ #define ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE -202
605
+ #define ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS -203
606
+ #define ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE -204
607
+ #define ONIGERR_TOO_MANY_MULTI_BYTE_RANGES -205
608
+ #define ONIGERR_TOO_SHORT_MULTI_BYTE_STRING -206
609
+ #define ONIGERR_TOO_BIG_BACKREF_NUMBER -207
610
+ #define ONIGERR_INVALID_BACKREF -208
611
+ #define ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED -209
612
+ #define ONIGERR_TOO_SHORT_DIGITS -210
613
+ #define ONIGERR_TOO_LONG_WIDE_CHAR_VALUE -212
614
+ #define ONIGERR_EMPTY_GROUP_NAME -214
615
+ #define ONIGERR_INVALID_GROUP_NAME -215
616
+ #define ONIGERR_INVALID_CHAR_IN_GROUP_NAME -216
617
+ #define ONIGERR_UNDEFINED_NAME_REFERENCE -217
618
+ #define ONIGERR_UNDEFINED_GROUP_REFERENCE -218
619
+ #define ONIGERR_MULTIPLEX_DEFINED_NAME -219
620
+ #define ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL -220
621
+ #define ONIGERR_NEVER_ENDING_RECURSION -221
622
+ #define ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY -222
623
+ #define ONIGERR_INVALID_CHAR_PROPERTY_NAME -223
624
+ #define ONIGERR_TOO_MANY_CAPTURE_GROUPS -224
625
+ #define ONIGERR_INVALID_CODE_POINT_VALUE -400
626
+ #define ONIGERR_INVALID_WIDE_CHAR_VALUE -400
627
+ #define ONIGERR_TOO_BIG_WIDE_CHAR_VALUE -401
628
+ #define ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION -402
629
+ #define ONIGERR_INVALID_COMBINATION_OF_OPTIONS -403
630
+
631
+ /* errors related to thread */
632
+ #define ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT -1001
633
+
634
+
635
+ /* must be smaller than BIT_STATUS_BITS_NUM (unsigned int * 8) */
636
+ #define ONIG_MAX_CAPTURE_HISTORY_GROUP 31
637
+ #define ONIG_IS_CAPTURE_HISTORY_GROUP(r, i) \
638
+ ((i) <= ONIG_MAX_CAPTURE_HISTORY_GROUP && (r)->list && (r)->list[i])
639
+
640
+ typedef struct OnigCaptureTreeNodeStruct {
641
+ int group; /* group number */
642
+ OnigPosition beg;
643
+ OnigPosition end;
644
+ int allocated;
645
+ int num_childs;
646
+ struct OnigCaptureTreeNodeStruct** childs;
647
+ } OnigCaptureTreeNode;
648
+
649
+ /* match result region type */
650
+ struct re_registers {
651
+ int allocated;
652
+ int num_regs;
653
+ OnigPosition* beg;
654
+ OnigPosition* end;
655
+ /* extended */
656
+ OnigCaptureTreeNode* history_root; /* capture history tree root */
657
+ };
658
+
659
+ /* capture tree traverse */
660
+ #define ONIG_TRAVERSE_CALLBACK_AT_FIRST 1
661
+ #define ONIG_TRAVERSE_CALLBACK_AT_LAST 2
662
+ #define ONIG_TRAVERSE_CALLBACK_AT_BOTH \
663
+ ( ONIG_TRAVERSE_CALLBACK_AT_FIRST | ONIG_TRAVERSE_CALLBACK_AT_LAST )
664
+
665
+
666
+ #define ONIG_REGION_NOTPOS -1
667
+
668
+ typedef struct re_registers OnigRegion;
669
+
670
+ typedef struct {
671
+ OnigEncoding enc;
672
+ OnigUChar* par;
673
+ OnigUChar* par_end;
674
+ } OnigErrorInfo;
675
+
676
+ typedef struct {
677
+ int lower;
678
+ int upper;
679
+ } OnigRepeatRange;
680
+
681
+ typedef void (*OnigWarnFunc) P_((const char* s));
682
+ extern void onig_null_warn P_((const char* s));
683
+ #define ONIG_NULL_WARN onig_null_warn
684
+
685
+ #define ONIG_CHAR_TABLE_SIZE 256
686
+
687
+ /* regex_t state */
688
+ #define ONIG_STATE_NORMAL 0
689
+ #define ONIG_STATE_SEARCHING 1
690
+ #define ONIG_STATE_COMPILING -1
691
+ #define ONIG_STATE_MODIFY -2
692
+
693
+ #define ONIG_STATE(reg) \
694
+ ((reg)->state > 0 ? ONIG_STATE_SEARCHING : (reg)->state)
695
+
696
+ typedef struct re_pattern_buffer {
697
+ /* common members of BBuf(bytes-buffer) */
698
+ unsigned char* p; /* compiled pattern */
699
+ unsigned int used; /* used space for p */
700
+ unsigned int alloc; /* allocated space for p */
701
+
702
+ int state; /* normal, searching, compiling */
703
+ int num_mem; /* used memory(...) num counted from 1 */
704
+ int num_repeat; /* OP_REPEAT/OP_REPEAT_NG id-counter */
705
+ int num_null_check; /* OP_NULL_CHECK_START/END id counter */
706
+ int num_comb_exp_check; /* combination explosion check */
707
+ int num_call; /* number of subexp call */
708
+ unsigned int capture_history; /* (?@...) flag (1-31) */
709
+ unsigned int bt_mem_start; /* need backtrack flag */
710
+ unsigned int bt_mem_end; /* need backtrack flag */
711
+ int stack_pop_level;
712
+ int repeat_range_alloc;
713
+ OnigRepeatRange* repeat_range;
714
+
715
+ OnigEncoding enc;
716
+ OnigOptionType options;
717
+ OnigSyntaxType* syntax;
718
+ OnigCaseFoldType case_fold_flag;
719
+ void* name_table;
720
+
721
+ /* optimization info (string search, char-map and anchors) */
722
+ int optimize; /* optimize flag */
723
+ int threshold_len; /* search str-length for apply optimize */
724
+ int anchor; /* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF */
725
+ OnigDistance anchor_dmin; /* (SEMI_)END_BUF anchor distance */
726
+ OnigDistance anchor_dmax; /* (SEMI_)END_BUF anchor distance */
727
+ int sub_anchor; /* start-anchor for exact or map */
728
+ unsigned char *exact;
729
+ unsigned char *exact_end;
730
+ unsigned char map[ONIG_CHAR_TABLE_SIZE]; /* used as BM skip or char-map */
731
+ int *int_map; /* BM skip for exact_len > 255 */
732
+ int *int_map_backward; /* BM skip for backward search */
733
+ OnigDistance dmin; /* min-distance of exact or map */
734
+ OnigDistance dmax; /* max-distance of exact or map */
735
+
736
+ /* regex_t link chain */
737
+ struct re_pattern_buffer* chain; /* escape compile-conflict */
738
+ } OnigRegexType;
739
+
740
+ typedef OnigRegexType* OnigRegex;
741
+
742
+ #ifndef ONIG_ESCAPE_REGEX_T_COLLISION
743
+ typedef OnigRegexType regex_t;
744
+ #endif
745
+
746
+
747
+ typedef struct {
748
+ int num_of_elements;
749
+ OnigEncoding pattern_enc;
750
+ OnigEncoding target_enc;
751
+ OnigSyntaxType* syntax;
752
+ OnigOptionType option;
753
+ OnigCaseFoldType case_fold_flag;
754
+ } OnigCompileInfo;
755
+
756
+ /* Oniguruma Native API */
757
+ ONIG_EXTERN
758
+ int onig_init P_((void));
759
+ ONIG_EXTERN
760
+ int onig_error_code_to_str PV_((OnigUChar* s, OnigPosition err_code, ...));
761
+ ONIG_EXTERN
762
+ void onig_set_warn_func P_((OnigWarnFunc f));
763
+ ONIG_EXTERN
764
+ void onig_set_verb_warn_func P_((OnigWarnFunc f));
765
+ ONIG_EXTERN
766
+ int onig_new P_((OnigRegex*, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax, OnigErrorInfo* einfo));
767
+ ONIG_EXTERN
768
+ int onig_reg_init P_((OnigRegex reg, OnigOptionType option, OnigCaseFoldType case_fold_flag, OnigEncoding enc, OnigSyntaxType* syntax));
769
+ ONIG_EXTERN
770
+ int onig_new_without_alloc P_((OnigRegex, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax, OnigErrorInfo* einfo));
771
+ ONIG_EXTERN
772
+ int onig_new_deluxe P_((OnigRegex* reg, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigCompileInfo* ci, OnigErrorInfo* einfo));
773
+ ONIG_EXTERN
774
+ void onig_free P_((OnigRegex));
775
+ ONIG_EXTERN
776
+ void onig_free_body P_((OnigRegex));
777
+ ONIG_EXTERN
778
+ int onig_recompile P_((OnigRegex, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigOptionType option, OnigEncoding enc, OnigSyntaxType* syntax, OnigErrorInfo* einfo));
779
+ ONIG_EXTERN
780
+ int onig_recompile_deluxe P_((OnigRegex reg, const OnigUChar* pattern, const OnigUChar* pattern_end, OnigCompileInfo* ci, OnigErrorInfo* einfo));
781
+ ONIG_EXTERN
782
+ OnigPosition onig_search P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* start, const OnigUChar* range, OnigRegion* region, OnigOptionType option));
783
+ ONIG_EXTERN
784
+ OnigPosition onig_search_gpos P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* global_pos, const OnigUChar* start, const OnigUChar* range, OnigRegion* region, OnigOptionType option));
785
+ ONIG_EXTERN
786
+ OnigPosition onig_match P_((OnigRegex, const OnigUChar* str, const OnigUChar* end, const OnigUChar* at, OnigRegion* region, OnigOptionType option));
787
+ ONIG_EXTERN
788
+ OnigRegion* onig_region_new P_((void));
789
+ ONIG_EXTERN
790
+ void onig_region_init P_((OnigRegion* region));
791
+ ONIG_EXTERN
792
+ void onig_region_free P_((OnigRegion* region, int free_self));
793
+ ONIG_EXTERN
794
+ void onig_region_copy P_((OnigRegion* to, OnigRegion* from));
795
+ ONIG_EXTERN
796
+ void onig_region_clear P_((OnigRegion* region));
797
+ ONIG_EXTERN
798
+ int onig_region_resize P_((OnigRegion* region, int n));
799
+ ONIG_EXTERN
800
+ int onig_region_set P_((OnigRegion* region, int at, int beg, int end));
801
+ ONIG_EXTERN
802
+ int onig_name_to_group_numbers P_((OnigRegex reg, const OnigUChar* name, const OnigUChar* name_end, int** nums));
803
+ ONIG_EXTERN
804
+ int onig_name_to_backref_number P_((OnigRegex reg, const OnigUChar* name, const OnigUChar* name_end, OnigRegion *region));
805
+ ONIG_EXTERN
806
+ int onig_foreach_name P_((OnigRegex reg, int (*func)(const OnigUChar*, const OnigUChar*,int,int*,OnigRegex,void*), void* arg));
807
+ ONIG_EXTERN
808
+ int onig_number_of_names P_((OnigRegex reg));
809
+ ONIG_EXTERN
810
+ int onig_number_of_captures P_((OnigRegex reg));
811
+ ONIG_EXTERN
812
+ int onig_number_of_capture_histories P_((OnigRegex reg));
813
+ ONIG_EXTERN
814
+ OnigCaptureTreeNode* onig_get_capture_tree P_((OnigRegion* region));
815
+ ONIG_EXTERN
816
+ int onig_capture_tree_traverse P_((OnigRegion* region, int at, int(*callback_func)(int,OnigPosition,OnigPosition,int,int,void*), void* arg));
817
+ ONIG_EXTERN
818
+ int onig_noname_group_capture_is_active P_((OnigRegex reg));
819
+ ONIG_EXTERN
820
+ OnigEncoding onig_get_encoding P_((OnigRegex reg));
821
+ ONIG_EXTERN
822
+ OnigOptionType onig_get_options P_((OnigRegex reg));
823
+ ONIG_EXTERN
824
+ OnigCaseFoldType onig_get_case_fold_flag P_((OnigRegex reg));
825
+ ONIG_EXTERN
826
+ OnigSyntaxType* onig_get_syntax P_((OnigRegex reg));
827
+ ONIG_EXTERN
828
+ int onig_set_default_syntax P_((OnigSyntaxType* syntax));
829
+ ONIG_EXTERN
830
+ void onig_copy_syntax P_((OnigSyntaxType* to, const OnigSyntaxType* from));
831
+ ONIG_EXTERN
832
+ unsigned int onig_get_syntax_op P_((OnigSyntaxType* syntax));
833
+ ONIG_EXTERN
834
+ unsigned int onig_get_syntax_op2 P_((OnigSyntaxType* syntax));
835
+ ONIG_EXTERN
836
+ unsigned int onig_get_syntax_behavior P_((OnigSyntaxType* syntax));
837
+ ONIG_EXTERN
838
+ OnigOptionType onig_get_syntax_options P_((OnigSyntaxType* syntax));
839
+ ONIG_EXTERN
840
+ void onig_set_syntax_op P_((OnigSyntaxType* syntax, unsigned int op));
841
+ ONIG_EXTERN
842
+ void onig_set_syntax_op2 P_((OnigSyntaxType* syntax, unsigned int op2));
843
+ ONIG_EXTERN
844
+ void onig_set_syntax_behavior P_((OnigSyntaxType* syntax, unsigned int behavior));
845
+ ONIG_EXTERN
846
+ void onig_set_syntax_options P_((OnigSyntaxType* syntax, OnigOptionType options));
847
+ ONIG_EXTERN
848
+ int onig_set_meta_char P_((OnigSyntaxType* syntax, unsigned int what, OnigCodePoint code));
849
+ ONIG_EXTERN
850
+ void onig_copy_encoding P_((OnigEncoding to, OnigEncoding from));
851
+ ONIG_EXTERN
852
+ OnigCaseFoldType onig_get_default_case_fold_flag P_((void));
853
+ ONIG_EXTERN
854
+ int onig_set_default_case_fold_flag P_((OnigCaseFoldType case_fold_flag));
855
+ ONIG_EXTERN
856
+ unsigned int onig_get_match_stack_limit_size P_((void));
857
+ ONIG_EXTERN
858
+ int onig_set_match_stack_limit_size P_((unsigned int size));
859
+ ONIG_EXTERN
860
+ int onig_end P_((void));
861
+ ONIG_EXTERN
862
+ const char* onig_version P_((void));
863
+ ONIG_EXTERN
864
+ const char* onig_copyright P_((void));
865
+
866
+ #ifdef __cplusplus
867
+ }
868
+ #endif
869
+
870
+ #endif /* ONIGURUMA_H */