summaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2023-07-24 00:09:53 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2023-07-24 00:09:53 -0300
commitbb4b2bc484ed1d827d707a5a50b234d6994af90c (patch)
tree832ec90bf0f34252447c3fd49311d3af3e319d56 /package.lisp
parent3d6e80b447ef96cdac3aada1f2ca08073648294f (diff)
downloadutils-main.tar.gz
utils-main.zip
Add char, color and name transformersHEADmain
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp14
1 files changed, 13 insertions, 1 deletions
diff --git a/package.lisp b/package.lisp
index f2e0a24..5a1af97 100644
--- a/package.lisp
+++ b/package.lisp
@@ -1,5 +1,14 @@
-(defpackage #:alien
+(defpackage #:color
+ (:use #:cl)
+ (:export #:hsl->rgb))
+
+(defpackage #:char
(:use #:cl)
+ (:export #:whitespace?
+ #:visible?))
+
+(defpackage #:alien
+ (:use #:cl #:sb-alien)
(:export #:call))
(defpackage #:queue
@@ -15,6 +24,9 @@
(:use #:cl)
(:export #:split
#:from-list
+ #:underscore->hyphen
+ #:pascal->kebab
+ #:upcase->pascal
#:read-file))
(defpackage #:small-cl