diff options
| author | fukachan <fukachan> | 2001-03-09 04:59:12 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-03-09 04:59:12 +0000 |
| commit | 27bc8adf6f8a05a4c0f47a2b77abd05ab5bb9ba7 (patch) | |
| tree | e47c614bc9df5b079ab0a32ad517294e10969695 /cpan/lib/File/Spec/Functions.pm | |
| parent | a3d4f00869d3f1a2377599198245f90502919504 (diff) | |
| download | fml8-27bc8adf6f8a05a4c0f47a2b77abd05ab5bb9ba7.tar.gz fml8-27bc8adf6f8a05a4c0f47a2b77abd05ab5bb9ba7.tar.bz2 fml8-27bc8adf6f8a05a4c0f47a2b77abd05ab5bb9ba7.zip | |
Initial revision
Diffstat (limited to 'cpan/lib/File/Spec/Functions.pm')
| -rw-r--r-- | cpan/lib/File/Spec/Functions.pm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/cpan/lib/File/Spec/Functions.pm b/cpan/lib/File/Spec/Functions.pm new file mode 100644 index 00000000..401de6d0 --- /dev/null +++ b/cpan/lib/File/Spec/Functions.pm @@ -0,0 +1,37 @@ +package File::Spec::Functions; + +use File::Spec; +use strict; + +use vars qw(@ISA @EXPORT); + +require Exporter; + +@ISA = qw(Exporter); + +@EXPORT = qw( + canonpath + catdir + catfile + curdir + rootdir + updir + no_upwards + file_name_is_absolute + path + nativename +); + +sub canonpath { File::Spec->canonpath(@_); } +sub catdir { File::Spec->catdir(@_); } +sub catfile { File::Spec->catfile(@_); } +sub curdir { File::Spec->curdir(@_); } +sub rootdir { File::Spec->rootdir(@_); } +sub updir { File::Spec->updir(@_); } +sub no_upwards { File::Spec->no_upwards(@_); } +sub file_name_is_absolute { File::Spec->file_name_is_absolute(@_); } +sub path { File::Spec->path(@_); } +sub nativename { File::Spec->nativename(@_); } + +1; + |
