10 lines
268 B
Common Lisp
10 lines
268 B
Common Lisp
|
(defpackage #:wine-matrix/util
|
||
|
(:use #:common-lisp)
|
||
|
(:export #:whitespace-p
|
||
|
#:remove-leading-whitespace
|
||
|
#:remove-trailing-whitespace
|
||
|
#:trim-string))
|
||
|
|
||
|
(defpackage #:wine-matrix/data-source
|
||
|
(:use #:common-lisp #:wine-matrix/util))
|