diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-07-22 19:57:42 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-07-22 19:57:42 -0700 |
commit | e0092558ad119f9a3c16b9f357e7ca0dcdf1044c (patch) | |
tree | 26fd17118ef8a6cb0b3410cb93cc70cad9eb0978 /lib.c | |
parent | 9c2fcf3aeae6cd112a1e5b5e8374a03cf5217c9b (diff) | |
download | txr-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.c')
-rw-r--r-- | lib.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -5060,6 +5060,11 @@ val split_str_set(val str, val set) return out; } +val sspl(val set, val str) +{ + return split_str_set(str, set); +} + val tok_str(val str, val tok_regex, val keep_sep) { list_collect_decl (out, iter); |