/usr/lib64/perl5/CORE
NameSizeModeActions
av.h33530644editdlrm
bitcount.h8500644editdlrm
charclass_invlists.h43535110644editdlrm
config.h1643670644editdlrm
cop.h419970644editdlrm
cv.h123320644editdlrm
dosish.h54240644editdlrm
ebcdic_tables.h497630644editdlrm
embed.h1012370644editdlrm
embedvar.h218330644editdlrm
EXTERN.h16300644editdlrm
fakesdio.h32100644editdlrm
feature.h110540644editdlrm
form.h14630644editdlrm
git_version.h3570644editdlrm
gv.h107110644editdlrm
handy.h1297600644editdlrm
hv.h255930644editdlrm
hv_func.h115300644editdlrm
hv_macro.h31090644editdlrm
inline.h747440644editdlrm
INTERN.h13090644editdlrm
intrpvar.h322270644editdlrm
invlist_inline.h74290644editdlrm
iperlsys.h493920644editdlrm
keywords.h66090644editdlrm
l1_char_class_tab.h1225120644editdlrm
libperl.so37289440755editdlrm
malloc_ctl.h15240644editdlrm
metaconfig.h6920644editdlrm
mg.h30130644editdlrm
mg_data.h50210644editdlrm
mg_raw.h43770644editdlrm
mg_vtable.h95620644editdlrm
mydtrace.h16930644editdlrm
nostdio.h33920644editdlrm
op.h382480644editdlrm
opcode.h939280644editdlrm
opnames.h89270644editdlrm
op_reg_common.h59110644editdlrm
overload.h32760644editdlrm
pad.h172320644editdlrm
parser.h69930644editdlrm
patchlevel.h91790644editdlrm
perl.h2835670644editdlrm
perlapi.h76800644editdlrm
perldtrace.h33010644editdlrm
perlio.h95550644editdlrm
perliol.h137610644editdlrm
perlsdio.h5270644editdlrm
perlvars.h129340644editdlrm
perly.h46890644editdlrm
perl_inc_macro.h62230644editdlrm
perl_langinfo.h29140644editdlrm
pp.h289810644editdlrm
pp_proto.h120670644editdlrm
proto.h2775020644editdlrm
reentr.h866390644editdlrm
regcharclass.h1677480644editdlrm
regcomp.h530540644editdlrm
regexp.h366090644editdlrm
regnodes.h403500644editdlrm
sbox32_hash.h572940644editdlrm
scope.h118930644editdlrm
stadtx_hash.h92210644editdlrm
sv.h888990644editdlrm
thread.h120950644editdlrm
time64.h11680644editdlrm
time64_config.h20480644editdlrm
uconfig.h1639220644editdlrm
unicode_constants.h80310644editdlrm
unixish.h52690644editdlrm
uni_keywords.h5547110644editdlrm
utf8.h504310644editdlrm
utfebcdic.h656360644editdlrm
util.h105750644editdlrm
uudmap.h9040644editdlrm
vutil.h79930644editdlrm
warnings.h114640644editdlrm
XSUB.h246070644editdlrm
zaphod32_hash.h96580644editdlrm
Edit: /usr/lib64/perl5/CORE/mg_vtable.h (9562B)
/* -*- buffer-read-only: t -*- * * mg_vtable.h * !!!!!!! DO NOT EDIT THIS FILE !!!!!!! * This file is built by regen/mg_vtable.pl. * Any changes made here will be lost! */ /* These constants should be used in preference to raw characters * when using magic. Note that some perl guts still assume * certain character properties of these constants, namely that * isUPPER() and toLOWER() may do useful mappings. */ #define PERL_MAGIC_sv '\0' /* Special scalar variable */ #define PERL_MAGIC_arylen '#' /* Array length ($#ary) */ #define PERL_MAGIC_rhash '%' /* Extra data for restricted hashes */ #define PERL_MAGIC_debugvar '*' /* $DB::single, signal, trace vars */ #define PERL_MAGIC_pos '.' /* pos() lvalue */ #define PERL_MAGIC_symtab ':' /* Extra data for symbol tables */ #define PERL_MAGIC_backref '<' /* For weak ref data */ #define PERL_MAGIC_arylen_p '@' /* To move arylen out of XPVAV */ #define PERL_MAGIC_bm 'B' /* Boyer-Moore (fast string search) */ #define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */ #define PERL_MAGIC_regdata 'D' /* Regex match position data (@+ and @- vars) */ #define PERL_MAGIC_regdatum 'd' /* Regex match position data element */ #define PERL_MAGIC_env 'E' /* %ENV hash */ #define PERL_MAGIC_envelem 'e' /* %ENV hash element */ #define PERL_MAGIC_fm 'f' /* Formline ('compiled' format) */ #define PERL_MAGIC_regex_global 'g' /* m//g target */ #define PERL_MAGIC_hints 'H' /* %^H hash */ #define PERL_MAGIC_hintselem 'h' /* %^H hash element */ #define PERL_MAGIC_isa 'I' /* @ISA array */ #define PERL_MAGIC_isaelem 'i' /* @ISA array element */ #define PERL_MAGIC_nkeys 'k' /* scalar(keys()) lvalue */ #define PERL_MAGIC_dbfile 'L' /* Debugger %_