summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-04-24 21:16:29 -0600
committerKarl Williamson <public@khwilliamson.com>2013-05-20 08:59:15 -0600
commit7d2b61dd6d5e3e16130e52e4f1549c2a79196700 (patch)
tree672ed302d49395016ac7f708b579912841c98e94 /handy.h
parentc753c8d3b46bc998479df764b00e374662756076 (diff)
downloadperl-7d2b61dd6d5e3e16130e52e4f1549c2a79196700.tar.gz
handy.h: Add missing toFOLD_utf8 macro
This corresponds to the other case changing macros
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/handy.h b/handy.h
index 75cdb23d32..26d73661f7 100644
--- a/handy.h
+++ b/handy.h
@@ -1307,6 +1307,7 @@ EXTCONST U32 PL_charclass[];
#define isXDIGIT_utf8(p) _generic_utf8_no_upper_latin1(_CC_XDIGIT, p, \
is_XDIGIT_high(p))
+#define toFOLD_utf8(p,s,l) to_utf8_fold(p,s,l)
#define toLOWER_utf8(p,s,l) to_utf8_lower(p,s,l)
#define toTITLE_utf8(p,s,l) to_utf8_title(p,s,l)
#define toUPPER_utf8(p,s,l) to_utf8_upper(p,s,l)