From: Jarkko Hietaniemi Date: Thu, 6 Feb 2003 20:00:52 +0000 (+0000) Subject: sv_cat_recode() proto was missing, noticed by Craig Berry. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7e558ce0ad27a6d4ff0ccaa818912d7e005a1004;p=p5sagit%2Fp5-mst-13.2.git sv_cat_recode() proto was missing, noticed by Craig Berry. p4raw-id: //depot/perl@18668 --- diff --git a/proto.h b/proto.h index 77ab0df..fb6911e 100644 --- a/proto.h +++ b/proto.h @@ -784,6 +784,7 @@ PERL_CALLCONV void Perl_sv_pos_b2u(pTHX_ SV* sv, I32* offsetp); PERL_CALLCONV char* Perl_sv_pvutf8n_force(pTHX_ SV* sv, STRLEN* lp); PERL_CALLCONV char* Perl_sv_pvbyten_force(pTHX_ SV* sv, STRLEN* lp); PERL_CALLCONV char* Perl_sv_recode_to_utf8(pTHX_ SV* sv, SV *encoding); +PERL_CALLCONV bool Perl_sv_cat_decode(pTHX_ SV* dsv, SV *encoding, SV *ssv, int *offset, char* tstr, int tlen); PERL_CALLCONV char* Perl_sv_reftype(pTHX_ SV* sv, int ob); PERL_CALLCONV void Perl_sv_replace(pTHX_ SV* sv, SV* nsv); PERL_CALLCONV void Perl_sv_report_used(pTHX);