summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/API14
-rw-r--r--doc/API.ja14
2 files changed, 28 insertions, 0 deletions
diff --git a/doc/API b/doc/API
index c639432..d12a46b 100644
--- a/doc/API
+++ b/doc/API
@@ -629,6 +629,20 @@ Oniguruma API Version 6.1.0 2016/08/22
normal return: ONIG_NORMAL
+# unsigned int onig_get_parse_depth_limit(void)
+
+ Return the maximum depth of parser recursion.
+ (default: DEFAULT_PARSE_DEPTH_LIMIT defined in regint.h. Currently 4096.)
+
+
+# int onig_set_parse_depth_limit(unsigned int depth)
+
+ Set the maximum depth of parser recursion.
+ (depth = 0: Set to the default value defined in regint.h.)
+
+ normal return: ONIG_NORMAL
+
+
# int onig_end(void)
The use of this library is finished.
diff --git a/doc/API.ja b/doc/API.ja
index 2597510..dcc7317 100644
--- a/doc/API.ja
+++ b/doc/API.ja
@@ -636,6 +636,20 @@
正常終了戻り値: ONIG_NORMAL
+# unsigned int onig_get_parse_depth_limit(void)
+
+ 再帰パース処理の最大深さを返す。
+ (デフォルト: regint.h で定義されている DEFAULT_PARSE_DEPTH_LIMIT。現在は 4096)
+
+
+# int onig_set_parse_depth_limit(unsigned int depth)
+
+ 再帰パース処理の最大深さを指定する。
+ (depth = 0: regint.h で定義されたデフォルト値に設定する。)
+
+ 正常終了戻り値: ONIG_NORMAL
+
+
# int onig_end(void)
ライブラリの使用を終了する。