diff options
author | dLux <dlux@spam.sch.bme.hu> | 2001-04-23 03:25:26 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-23 12:53:25 +0000 |
commit | 679ac26e110ef97fbf30ce13479d7051699b4a34 (patch) | |
tree | 2a2bf9e9cb7b0a1b9e8e5ea27c8e2ae3edfc33c5 /sv.h | |
parent | d0369dd15170efd8d6a93db21c003d0edd4bfdf4 (diff) | |
download | perl-679ac26e110ef97fbf30ce13479d7051699b4a34.tar.gz |
Fix for
Subject: [ID 20010423.001] perlapi documentation inconsistency (SvGROW)
Message-Id: <E14rTEM-0000CB-00@dl.sch.bme.hu>
(SvGROW really does return a char *.)
p4raw-id: //depot/perl@9786
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1053,7 +1053,7 @@ more than once. Calls a non-destructive version of C<sv_setsv> if dsv is not the same as ssv. May evaluate arguments more than once. -=for apidoc Am|void|SvGROW|SV* sv|STRLEN len +=for apidoc Am|char *|SvGROW|SV* sv|STRLEN len Expands the character buffer in the SV so that it has room for the indicated number of bytes (remember to reserve space for an extra trailing NUL character). Calls C<sv_grow> to perform the expansion if necessary. |