diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-01-09 12:37:03 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-01-09 19:29:02 -0700 |
commit | 0876b9a01ce95023535c197900c755d5c98d616f (patch) | |
tree | 7da60e7cc7ebd37721babdc7b4466a35a2f7e596 /embed.h | |
parent | bcd05b946b5a96ca0b2734a1042bda6af592c97b (diff) | |
download | perl-0876b9a01ce95023535c197900c755d5c98d616f.tar.gz |
Add check_utf8_print()
This new function looks for problematic code points on output, and warns if any
are found, returning FALSE as well.
What it warns about may change, so is marked as experimental.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -920,6 +920,7 @@ #define boot_core_UNIVERSAL() Perl_boot_core_UNIVERSAL(aTHX) #define boot_core_mro() Perl_boot_core_mro(aTHX) #define cando(a,b,c) Perl_cando(aTHX_ a,b,c) +#define check_utf8_print(a,b) Perl_check_utf8_print(aTHX_ a,b) #define ck_anoncode(a) Perl_ck_anoncode(aTHX_ a) #define ck_bitop(a) Perl_ck_bitop(aTHX_ a) #define ck_chdir(a) Perl_ck_chdir(aTHX_ a) |