diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-10-18 21:06:06 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-10-18 22:10:36 +0100 |
commit | 30685b5659009a95642202219acc6ded18f74dbc (patch) | |
tree | f3f76ff8fe1aa5f396b1b9ff3034bcff78019cf9 /ext/XS-APItest/APItest.pm | |
parent | 8f3d5996a665cf70e12a836b95e184e9ab628251 (diff) | |
download | perl-30685b5659009a95642202219acc6ded18f74dbc.tar.gz |
Expose utf16_to_utf8{,reversed} via XS::APItest, and provide some basic tests.
Diffstat (limited to 'ext/XS-APItest/APItest.pm')
-rw-r--r-- | ext/XS-APItest/APItest.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/XS-APItest/APItest.pm b/ext/XS-APItest/APItest.pm index 12d0a03e01..c40e4b8a4b 100644 --- a/ext/XS-APItest/APItest.pm +++ b/ext/XS-APItest/APItest.pm @@ -23,10 +23,10 @@ our @EXPORT = qw( print_double print_int print_long my_cxt_getint my_cxt_getsv my_cxt_setint my_cxt_setsv sv_setsv_cow_hashkey_core sv_setsv_cow_hashkey_notcore rmagical_cast rmagical_flags - DPeek + DPeek utf16_to_utf8 utf16_to_utf8_reversed ); -our $VERSION = '0.15'; +our $VERSION = '0.16'; use vars '$WARNINGS_ON_BOOTSTRAP'; use vars map "\$${_}_called_PP", qw(BEGIN UNITCHECK CHECK INIT END); |