diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-09 14:48:32 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-09 14:48:32 +0000 |
commit | fc6a272d740c370b8c0a1a88a6649b9ea7ee4c21 (patch) | |
tree | a73f177a9f4f6c890e8eb5bbdbb43ee072f1fd55 /pod/perlapi.pod | |
parent | 04932ac8f7d72810cce59c52976ab33010e88b99 (diff) | |
download | perl-fc6a272d740c370b8c0a1a88a6649b9ea7ee4c21.tar.gz |
Regen perlapi, perltoc.
p4raw-id: //depot/perl@9088
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 27d5bd7c02..1cb3a0c1e9 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2389,19 +2389,19 @@ false, defined or undefined. Does not handle 'get' magic. =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 -=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 |