From: Jarkko Hietaniemi Date: Mon, 5 Mar 2001 19:25:26 +0000 (+0000) Subject: Regen perlapi. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fa519979bce23e8f04293daac378caa60e4e356e;p=p5sagit%2Fp5-mst-13.2.git Regen perlapi. p4raw-id: //depot/perl@9047 --- diff --git a/pod/perlapi.pod b/pod/perlapi.pod index db42d44..27d5bd7 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -318,7 +318,7 @@ L. SV* cv_const_sv(CV* cv) =for hackers -Found in file opmini.c +Found in file op.c =item dMARK @@ -1223,7 +1223,7 @@ eligible for inlining at compile-time. CV* newCONSTSUB(HV* stash, char* name, SV* sv) =for hackers -Found in file opmini.c +Found in file op.c =item newHV @@ -1369,7 +1369,7 @@ Found in file sv.c Used by C to hook up XSUBs as Perl subs. =for hackers -Found in file opmini.c +Found in file op.c =item newXSproto @@ -1568,13 +1568,34 @@ Found in file pp.h =item POPp -Pops a string off the stack. +Pops a string off the stack. Deprecated. New code should provide +a STRLEN n_a and use POPpx. char* POPp =for hackers Found in file pp.h +=item POPpbytex + +Pops a string off the stack which must consist of bytes i.e. characters < 256. +Requires a variable STRLEN n_a in scope. + + char* POPpbytex + +=for hackers +Found in file pp.h + +=item POPpx + +Pops a string off the stack. +Requires a variable STRLEN n_a in scope. + + char* POPpx + +=for hackers +Found in file pp.h + =item POPs Pops an SV off the stack. @@ -2368,19 +2389,19 @@ false, defined or undefined. Does not handle 'get' magic. =for hackers Found in file sv.h -=item svtype +=item SvTYPE -An enum of flags for Perl types. These are found in the file B -in the C enum. Test these flags with the C macro. +Returns the type of the SV. See C. + + svtype SvTYPE(SV* sv) =for hackers Found in file sv.h -=item SvTYPE - -Returns the type of the SV. See C. +=item svtype - svtype SvTYPE(SV* sv) +An enum of flags for Perl types. These are found in the file B +in the C enum. Test these flags with the C macro. =for hackers Found in file sv.h