diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-24 13:06:24 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-24 13:06:24 +0000 |
commit | 143014bf2594b56fdf762b3cf36b37c248c55291 (patch) | |
tree | b94287463b3dfed26a85e4168652584f50edfc04 /proto.h | |
parent | b3122bc4daf8abd219740b0090a596d8cd89f890 (diff) | |
download | perl-143014bf2594b56fdf762b3cf36b37c248c55291.tar.gz |
Rewrite sv_uni_display() as pv_uni_display() as
reimplement sv_uni_display() using that.
p4raw-id: //depot/perl@12619
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -897,6 +897,7 @@ PERL_CALLCONV void Perl_sv_setsv_mg(pTHX_ SV *dstr, SV *sstr); PERL_CALLCONV void Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len); PERL_CALLCONV MGVTBL* Perl_get_vtbl(pTHX_ int vtbl_id); PERL_CALLCONV char* Perl_pv_display(pTHX_ SV *dsv, char *pv, STRLEN cur, STRLEN len, STRLEN pvlim); +PERL_CALLCONV char* Perl_pv_uni_display(pTHX_ SV *dsv, U8 *spv, STRLEN len, STRLEN pvlim, UV flags); PERL_CALLCONV char* Perl_sv_uni_display(pTHX_ SV *dsv, SV *ssv, STRLEN pvlim, UV flags); PERL_CALLCONV void Perl_dump_indent(pTHX_ I32 level, PerlIO *file, const char* pat, ...) #ifdef CHECK_FORMAT |