diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-07 13:15:45 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-06-07 13:15:45 +0000 |
commit | 926f8064e84e4f3db7d3ef5d47b21d7f46d7c137 (patch) | |
tree | d3a490e18f1f7153055d0ce335cfa02337317dbc /pod/perlapi.pod | |
parent | 727b75065266fe9d20c37c822e74919eb0b182dc (diff) | |
download | perl-926f8064e84e4f3db7d3ef5d47b21d7f46d7c137.tar.gz |
Fix apidoc for newSVhek
p4raw-id: //depot/perl@24728
Diffstat (limited to 'pod/perlapi.pod')
-rw-r--r-- | pod/perlapi.pod | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 5856a75ca1..aadf23a5af 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2942,6 +2942,17 @@ macro. =for hackers Found in file sv.c +=item newSVhek + +Creates a new SV from the hash key structure. It will generate scalars that +point to the shared string table where possible. Returns a new (undefined) +SV if the hek is NULL. + + SV* newSVhek(const HEK *hek) + +=for hackers +Found in file sv.c + =item newSViv Creates a new SV and copies an integer into it. The reference count for the |