diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2024-05-27 20:20:14 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2024-05-27 20:20:14 -0700 |
commit | 6bccfe8a55a12ef162fd945633c130f8b3362529 (patch) | |
tree | 2c0c75c5022003f0de0f8d6f20bfa70bc76d9266 /lib.h | |
parent | 55cf3cae3665cab1264fe00ec31859d8dba13027 (diff) | |
download | txr-6bccfe8a55a12ef162fd945633c130f8b3362529.tar.gz txr-6bccfe8a55a12ef162fd945633c130f8b3362529.tar.bz2 txr-6bccfe8a55a12ef162fd945633c130f8b3362529.zip |
quasiliterals: buffers in hex, separation for strings and buffers.
In this commit, output variables in the TXR Pattern language and
in TXR Lisp quasiliterals now support separator strings for values
that are strings and buffers. Values which are buffers appear
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1103,6 +1103,7 @@ val scat2(val s1, val s2); val scat3(val s1, val sep, val s2); val join_with(val sep, varg args); val fmt_join(varg args); +val fmt_str_sep(val sep, val str, val self); val split_str(val str, val sep); val split_str_keep(val str, val sep, val keep_sep_opt, val count_opt); val spl(val sep, val arg1, val arg2); |