string-cmp and string-cmp-ic added

This commit is contained in:
vaclavt
2022-03-13 10:32:43 +01:00
parent 65abc2fd07
commit cd9822fcf2
7 changed files with 26 additions and 2 deletions

View File

@@ -26,6 +26,8 @@
(defn string-downcase (str)
(string-case str "lower"))
(defn string-cmp-ic (a b)
(string-cmp (string-upcase a) (string-upcase b)))
(defn string-join (lst sep)
(do