/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/form.h (1463B)
/* form.h * * Copyright (C) 1991, 1992, 1993, 2000, 2004, 2011 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. * */ #define FF_END 0 /* tidy up, then return */ #define FF_LINEMARK 1 /* start (or end) of a line */ #define FF_LITERAL 2 /* append literal chars */ #define FF_SKIP 3 /* skip chars in format */ #define FF_FETCH 4 /* get next item and set field size to */ #define FF_CHECKNL 5 /* find max len of item (up to \n) that fits field */ #define FF_CHECKCHOP 6 /* like CHECKNL, but up to highest split point */ #define FF_SPACE 7 /* append padding space (diff of field, item size) */ #define FF_HALFSPACE 8 /* like FF_SPACE, but only append half as many */ #define FF_ITEM 9 /* append a text item, while blanking ctrl chars */ #define FF_CHOP 10 /* (for ^*) chop the current item */ #define FF_LINEGLOB 11 /* process @* */ #define FF_DECIMAL 12 /* do @##, ^##, where =(precision|flags) */ #define FF_NEWLINE 13 /* delete trailing spaces, then append \n */ #define FF_BLANK 14 /* for arg==0: do '~'; for arg>0 : do '~~' */ #define FF_MORE 15 /* replace long end of string with '...' */ #define FF_0DECIMAL 16 /* like FF_DECIMAL but for 0### */ #define FF_LINESNGL 17 /* process ^* */