f591c32dfb
Add a function to klatre format a timestamp using dottime Change-Id: I24d8d91f49f352b606f44834f7229ab55b55afa0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1344 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: kanepyork <rikingcoding@gmail.com>
12 lines
276 B
Common Lisp
12 lines
276 B
Common Lisp
(defpackage #:klatre
|
|
(:documentation "Grab-bag utility library for Common Lisp")
|
|
(:use #:cl)
|
|
(:export
|
|
;; Miscellanious utilities
|
|
#:comment #:posp
|
|
|
|
;; Sequence functions
|
|
#:chunk-list #:mapconcat
|
|
|
|
;; String handling
|
|
#:+dottime-format+ #:format-dottime))
|