diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-01-18 10:25:33 -0800 |
---|---|---|
committer | Kaz Kyheku <kaz@kylheku.com> | 2020-01-18 10:25:33 -0800 |
commit | 72eff372aefb86ca8ae5ad2e95f01d4cc9e0ec78 (patch) | |
tree | 0f94bdf96c28c0f9daafd168348230bc81e6cc56 /lib.h | |
parent | 7a6a9a21090a36ae094b3a4746a6dd371bd653cb (diff) | |
download | txr-72eff372aefb86ca8ae5ad2e95f01d4cc9e0ec78.tar.gz txr-72eff372aefb86ca8ae5ad2e95f01d4cc9e0ec78.tar.bz2 txr-72eff372aefb86ca8ae5ad2e95f01d4cc9e0ec78.zip |
New function: coded-length.
* eval.c (eval_init): Register coded-length intrinsic.
* lib.c (coded_length): New function.
* lib.h (coded_length): Declared.
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -827,6 +827,7 @@ val string_extend(val str, val tail); val stringp(val str); val lazy_stringp(val str); val length_str(val str); +val coded_length(val str); const wchar_t *c_str(val str); val search_str(val haystack, val needle, val start_num, val from_end); val search_str_tree(val haystack, val tree, val start_num, val from_end); |