mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
8 lines
344 B
Scheme
8 lines
344 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-resolve path-normalize make-path)
|
|
(import (chibi) (chibi string))
|
|
(include "pathname.scm"))
|