diff options
author | Richard Soderberg <p5-authors@crystalflame.net> | 2001-09-04 08:16:47 -0700 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-05 11:51:24 +0000 |
commit | 328bf3738a02f1c1bfa010034ca56aee254f8a25 (patch) | |
tree | 4084b6101b3fa3619566f4261c878a3cd68d14b0 /pod/perlguts.pod | |
parent | fa03377f212c69c47ab6514076e52611d288ed57 (diff) | |
download | perl-328bf3738a02f1c1bfa010034ca56aee254f8a25.tar.gz |
Re: sv_catpvfn and sv_setpvfn
Message-Id: <200109042216.PAA17858@oregonnet.com>
p4raw-id: //depot/perl@11876
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 8b116532cb..88ca803824 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -54,7 +54,7 @@ To change the value of an *already-existing* SV, there are seven routines: void sv_setpv(SV*, const char*); void sv_setpvn(SV*, const char*, int) void sv_setpvf(SV*, const char*, ...); - void sv_setpvfn(SV*, const char*, STRLEN, va_list *, SV **, I32, bool); + void sv_vsetpvfn(SV*, const char*, STRLEN, va_list *, SV **, I32, bool); void sv_setsv(SV*, SV*); Notice that you can choose to specify the length of the string to be @@ -67,7 +67,7 @@ string terminating with a NUL character. The arguments of C<sv_setpvf> are processed like C<sprintf>, and the formatted output becomes the value. -C<sv_setpvfn> is an analogue of C<vsprintf>, but it allows you to specify +C<sv_vsetpvfn> is an analogue of C<vsprintf>, but it allows you to specify either a pointer to a variable argument list or the address and length of an array of SVs. The last argument points to a boolean; on return, if that boolean is true, then locale-specific information has been used to format @@ -162,7 +162,7 @@ you can use the following functions: void sv_catpv(SV*, const char*); void sv_catpvn(SV*, const char*, STRLEN); void sv_catpvf(SV*, const char*, ...); - void sv_catpvfn(SV*, const char*, STRLEN, va_list *, SV **, I32, bool); + void sv_vcatpvfn(SV*, const char*, STRLEN, va_list *, SV **, I32, bool); void sv_catsv(SV*, SV*); The first function calculates the length of the string to be appended by |