summaryrefslogtreecommitdiff
path: root/pod/perlapi.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-03-05 19:25:26 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-05 19:25:26 +0000
commitfa519979bce23e8f04293daac378caa60e4e356e (patch)
treea17336035d94c87a8acf2f99c437dd6dd790b460 /pod/perlapi.pod
parentefc8fc11b94840ac8764b540401f8d7897b71189 (diff)
downloadperl-fa519979bce23e8f04293daac378caa60e4e356e.tar.gz
Regen perlapi.
p4raw-id: //depot/perl@9047
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r--pod/perlapi.pod43
1 files changed, 32 insertions, 11 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index db42d446a9..27d5bd7c02 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -318,7 +318,7 @@ L<perlsub/"Constant Functions">.
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<xsubpp> 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<sv.h>
-in the C<svtype> enum. Test these flags with the C<SvTYPE> macro.
+Returns the type of the SV. See C<svtype>.
+
+ svtype SvTYPE(SV* sv)
=for hackers
Found in file sv.h
-=item SvTYPE
-
-Returns the type of the SV. See C<svtype>.
+=item svtype
- svtype SvTYPE(SV* sv)
+An enum of flags for Perl types. These are found in the file B<sv.h>
+in the C<svtype> enum. Test these flags with the C<SvTYPE> macro.
=for hackers
Found in file sv.h