/usr/lib64/perl5/CORE
NameSizeModeActions
av.h40090644editdlrm
cc_runtime.h21670644editdlrm
config.h1450000644editdlrm
cop.h303680644editdlrm
cv.h96150644editdlrm
dosish.h61720644editdlrm
embed.h1679400644editdlrm
embedvar.h323420644editdlrm
EXTERN.h18110644editdlrm
fakesdio.h33160644editdlrm
fakethr.h19660644editdlrm
form.h7230644editdlrm
git_version.h4230644editdlrm
gv.h80620644editdlrm
handy.h328250644editdlrm
hv.h215620644editdlrm
INTERN.h15100644editdlrm
intrpvar.h226230644editdlrm
iperlsys.h486300644editdlrm
keywords.h64280644editdlrm
libperl.so14858960755editdlrm
malloc_ctl.h14840644editdlrm
mg.h24360644editdlrm
mydtrace.h9440644editdlrm
nostdio.h34500644editdlrm
op.h242990644editdlrm
opcode.h507500644editdlrm
opnames.h95960644editdlrm
overload.h15210644editdlrm
pad.h124660644editdlrm
parser.h39430644editdlrm
patchlevel.h94370644editdlrm
perl.h1738840644editdlrm
perlapi.h291440644editdlrm
perlio.h109250644editdlrm
perliol.h140540644editdlrm
perlsdio.h50320644editdlrm
perlsfio.h27030644editdlrm
perlvars.h57570644editdlrm
perly.h49510644editdlrm
pp.h183040644editdlrm
pp_proto.h109780644editdlrm
proto.h2194950644editdlrm
reentr.h822120644editdlrm
regcharclass.h262710644editdlrm
regcomp.h296730644editdlrm
regexp.h245520644editdlrm
regnodes.h309720644editdlrm
scope.h84930644editdlrm
sperl.o2641280644editdlrm
sv.h740630644editdlrm
thread.h125630644editdlrm
uconfig.h1436670644editdlrm
unixish.h45610644editdlrm
utf8.h127890644editdlrm
utfebcdic.h309020644editdlrm
util.h16570644editdlrm
uudmap.h9040644editdlrm
warnings.h40600644editdlrm
XSUB.h211100644editdlrm
Edit: /usr/lib64/perl5/CORE/util.h (1657B)
/* util.h * * Copyright (C) 1991, 1992, 1993, 1999, 2001, 2002, 2003, 2004, 2005, * 2007, by Larry Wall and others * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. * */ #ifdef VMS # define PERL_FILE_IS_ABSOLUTE(f) \ (*(f) == '/' \ || (strchr(f,':') \ || ((*(f) == '[' || *(f) == '<') \ && (isALNUM((f)[1]) || strchr("$-_]>",(f)[1]))))) #else /* !VMS */ # if defined(WIN32) || defined(__CYGWIN__) # define PERL_FILE_IS_ABSOLUTE(f) \ (*(f) == '/' || *(f) == '\\' /* UNC/rooted path */ \ || ((f)[0] && (f)[1] == ':')) /* drive name */ # else /* !WIN32 */ # ifdef NETWARE # define PERL_FILE_IS_ABSOLUTE(f) \ (((f)[0] && (f)[1] == ':') /* drive name */ \ || ((f)[0] == '\\' && (f)[1] == '\\') /* UNC path */ \ || ((f)[3] == ':')) /* volume name, currently only sys */ # else /* !NETWARE */ # if defined(DOSISH) || defined(EPOC) || defined(__SYMBIAN32__) # define PERL_FILE_IS_ABSOLUTE(f) \ (*(f) == '/' \ || ((f)[0] && (f)[1] == ':')) /* drive name */ # else /* NEITHER DOSISH NOR EPOCISH NOR SYMBIANISH */ # ifdef MACOS_TRADITIONAL # define PERL_FILE_IS_ABSOLUTE(f) (strchr(f, ':') && *(f) != ':') # else /* !MACOS_TRADITIONAL */ # define PERL_FILE_IS_ABSOLUTE(f) (*(f) == '/') # endif /* MACOS_TRADITIONAL */ # endif /* DOSISH */ # endif /* NETWARE */ # endif /* WIN32 */ #endif /* VMS */ /* * Local variables: * c-indentation-style: bsd * c-basic-offset: 4 * indent-tabs-mode: t * End: * * ex: set ts=8 sts=4 sw=4 noet: */