blob: 401de6d07d76350ab8544e410b6b5e162f10aac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
|