summaryrefslogtreecommitdiff
path: root/pod/perlapi.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-19 07:34:29 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-19 07:34:29 +0000
commit2a4bf7730d252fcadf5e50c3a9c740b5c94acfe3 (patch)
tree9a7597178791661d866752380767b1406cb2c96a /pod/perlapi.pod
parent17cab1b848e4960c008b73548ee8e62a9e9735ec (diff)
parent41d6edb2c1acac32a0296d594f0943752d23f077 (diff)
downloadperl-2a4bf7730d252fcadf5e50c3a9c740b5c94acfe3.tar.gz
integrate cfgperl contents into mainline
p4raw-id: //depot/perl@5822
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r--pod/perlapi.pod17
1 files changed, 12 insertions, 5 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index c13dcde6ff..32e77d6f07 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -897,6 +897,13 @@ Creates a new SV which is an exact duplicate of the original SV.
SV* newSVsv(SV* old)
+=item newSVuv
+
+Creates a new SV and copies an unsigned integer into it.
+The reference count for the SV is set to 1.
+
+ SV* newSVuv(UV u)
+
=item newXS
Used by C<xsubpp> to hook up XSUBs as Perl subs.
@@ -1590,17 +1597,17 @@ false, defined or undefined. Does not handle 'get' magic.
bool SvTRUE(SV* sv)
+=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.
+
=item SvTYPE
Returns the type of the SV. See C<svtype>.
svtype SvTYPE(SV* sv)
-=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.
-
=item SVt_IV
Integer type flag for scalars. See C<svtype>.