summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2020-07-22 19:57:42 -0700
committerKaz Kylheku <kaz@kylheku.com>2020-07-22 19:57:42 -0700
commite0092558ad119f9a3c16b9f357e7ca0dcdf1044c (patch)
tree26fd17118ef8a6cb0b3410cb93cc70cad9eb0978 /lib.h
parent9c2fcf3aeae6cd112a1e5b5e8374a03cf5217c9b (diff)
downloadtxr-e0092558ad119f9a3c16b9f357e7ca0dcdf1044c.tar.gz
txr-e0092558ad119f9a3c16b9f357e7ca0dcdf1044c.tar.bz2
txr-e0092558ad119f9a3c16b9f357e7ca0dcdf1044c.zip
New sspl function.
* eval (eval_init): Register sspl, an argument-reversed interface to split-str-set. * lib.c (sspl): New function. * lib.h (sspl): Declared. * txr.1: Documented.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib.h b/lib.h
index fc4dfebd..f23eb36f 100644
--- a/lib.h
+++ b/lib.h
@@ -875,6 +875,7 @@ val split_str(val str, val sep);
val split_str_keep(val str, val sep, val keep_sep);
val spl(val sep, val arg1, val arg2);
val split_str_set(val str, val set);
+val sspl(val set, val str);
val tok_str(val str, val tok_regex, val keep_sep);
val tok(val tok_regex, val arg1, val arg2);
val tok_where(val str, val tok_regex);