X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=proto.h;h=ae352c7f5b1673abf4a7be25601b41ddcd3c41cd;hb=4929bf7bc76235df307ee4ade0f6222410e8b46b;hp=c7b6aa4c66502e7378d13f8ba7e4fac74547fd3f;hpb=b46bc2b69fd0825253e7e513bb1c568567aa6ab0;p=p5sagit%2Fp5-mst-13.2.git diff --git a/proto.h b/proto.h index c7b6aa4..ae352c7 100644 --- a/proto.h +++ b/proto.h @@ -32,6 +32,9 @@ PERL_CALLCONV Free_t Perl_mfree(Malloc_t where); PERL_CALLCONV MEM_SIZE Perl_malloced_size(void *p); #endif +PERL_CALLCONV void* Perl_get_context(void); +PERL_CALLCONV void Perl_set_context(void *thx); + END_EXTERN_C /* functions with flag 'n' should come before here */ @@ -768,6 +771,7 @@ PERL_CALLCONV bool Perl_sv_upgrade(pTHX_ SV* sv, U32 mt); PERL_CALLCONV void Perl_sv_usepvn(pTHX_ SV* sv, char* ptr, STRLEN len); PERL_CALLCONV void Perl_sv_vcatpvfn(pTHX_ SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted); PERL_CALLCONV void Perl_sv_vsetpvfn(pTHX_ SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted); +PERL_CALLCONV NV Perl_str_to_version(pTHX_ SV *sv); PERL_CALLCONV SV* Perl_swash_init(pTHX_ char* pkg, char* name, SV* listsv, I32 minbits, I32 none); PERL_CALLCONV UV Perl_swash_fetch(pTHX_ SV *sv, U8 *ptr); PERL_CALLCONV void Perl_taint_env(pTHX);