mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 21:59:17 +02:00
8 lines
331 B
Scheme
8 lines
331 B
Scheme
|
|
(define-library (chibi pathname)
|
|
(export path-strip-directory path-directory
|
|
path-extension path-strip-extension path-replace-extension
|
|
path-absolute? path-relative? path-strip-leading-parents
|
|
path-relative-to path-normalize make-path)
|
|
(import (chibi) (chibi string))
|
|
(include "pathname.scm"))
|