2019-11-17 17:49:37 -05:00
|
|
|
;; Copyright 2019 Lassi Kortela
|
|
|
|
;; SPDX-License-Identifier: ISC
|
|
|
|
|
2021-08-17 05:51:32 -04:00
|
|
|
(define-library (lassik shell-quote)
|
2019-11-17 17:49:37 -05:00
|
|
|
(export shell-quote)
|
|
|
|
(import (scheme base) (scheme write) (chibi match))
|
|
|
|
(cond-expand
|
|
|
|
((library (srfi 175)) (import (srfi 175)))
|
|
|
|
(else (import (scheme char))
|
|
|
|
(begin (define (ascii-alphanumeric? char)
|
|
|
|
(or (char-alphabetic? char) (char-numeric? char))))))
|
|
|
|
(include "shell-quote.scm"))
|