diff options
Diffstat (limited to 'lib.h')
-rw-r--r-- | lib.h | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -573,8 +573,12 @@ val split_str_set(val str, val set); val tok_str(val str, val tok_regex, val keep_sep); val list_str(val str); val trim_str(val str); -val string_cmp(val astr, val bstr); -val string_lt(val astr, val bstr); +val cmp_str(val astr, val bstr); +val str_eq(val astr, val bstr); +val str_lt(val astr, val bstr); +val str_gt(val astr, val bstr); +val str_le(val astr, val bstr); +val str_ge(val astr, val bstr); val int_str(val str, val base); val flo_str(val str); val num_str(val str); |