chibi-scheme/lib/chibi/pathname.module
Alex Shinn 3f2a9c9630 adding abstract pathname module
this is for use with uri's - it doesn't access the filesystem
or resolve symlinks, that functionality will be provided in
another module.
2009-12-12 17:00:57 +09:00

7 lines
281 B
Text

(define-module (chibi pathname)
(export path-strip-directory path-directory path-extension-pos
path-extension path-strip-extension path-replace-extension
path-absolute? path-relative? path-normalize make-path)
(import (scheme))
(include "pathname.scm"))