diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-02-04 14:47:14 -0500 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-02-06 21:16:49 +0000 |
commit | 843dbe2696b695867a2230e1af4a98d63d6c9559 (patch) | |
tree | cd02e38f9afb04f2f26c4d78b52c54a27d4c2975 /pod/perlapi.pod | |
parent | 8257a158a240b1ac87c8767f1a5f236a029fb9c4 (diff) | |
download | perl-843dbe2696b695867a2230e1af4a98d63d6c9559.tar.gz |
Up to date CPAN mirror list
Message-Id: <20010204194714.A4698@blackrider.aocn.com>
p4raw-id: //depot/perl@8709
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r-- | pod/perlapi.pod | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 40d40fe9f0..aa50fbdf36 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2365,19 +2365,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 |