summaryrefslogtreecommitdiff
path: root/embed.fnc
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-12-02 21:01:12 -0700
committerKarl Williamson <public@khwilliamson.com>2012-12-09 10:30:00 -0700
commit5092f92a753474f7a1ed5525e874cb0904427ae5 (patch)
treec13eca25ad226086c186e29d1ab78b75f4d79edc /embed.fnc
parente712593e71e0d665d0aed1b3e126cda71bb5eda1 (diff)
downloadperl-5092f92a753474f7a1ed5525e874cb0904427ae5.tar.gz
Add functions for getting ctype ALNUMC
We think this is meant to stand for C's alphanumeric, that is what is matched by POSIX [:alnum:]. There were not functions and a dedicated swash available for accessing it. Future commits will want to use these.
Diffstat (limited to 'embed.fnc')
-rw-r--r--embed.fnc3
1 files changed, 3 insertions, 0 deletions
diff --git a/embed.fnc b/embed.fnc
index fc2c2b825f..04603edabf 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -606,6 +606,7 @@ ApPR |U32 |to_uni_upper_lc|U32 c
ApPR |U32 |to_uni_title_lc|U32 c
ApPR |U32 |to_uni_lower_lc|U32 c
ApPR |bool |is_uni_alnum |UV c
+AMpPR |bool |is_uni_alnumc |UV c
ApPR |bool |is_uni_idfirst |UV c
ApPR |bool |is_uni_alpha |UV c
ApPR |bool |is_uni_ascii |UV c
@@ -636,6 +637,7 @@ Ap |UV |to_uni_lower |UV c|NN U8 *p|NN STRLEN *lenp
Amp |UV |to_uni_fold |UV c|NN U8 *p|NN STRLEN *lenp
AMp |UV |_to_uni_fold_flags|UV c|NN U8 *p|NN STRLEN *lenp|const U8 flags
ApPR |bool |is_uni_alnum_lc|UV c
+AMpPR |bool |is_uni_alnumc_lc|UV c
ApPR |bool |is_uni_idfirst_lc|UV c
AMpR |bool |_is_uni_perl_idstart|UV c
ApPR |bool |is_uni_alpha_lc|UV c
@@ -657,6 +659,7 @@ Anpd |bool |is_utf8_string |NN const U8 *s|STRLEN len
Anpdmb |bool |is_utf8_string_loc|NN const U8 *s|STRLEN len|NULLOK const U8 **ep
Anpd |bool |is_utf8_string_loclen|NN const U8 *s|STRLEN len|NULLOK const U8 **ep|NULLOK STRLEN *el
ApR |bool |is_utf8_alnum |NN const U8 *p
+AMpR |bool |is_utf8_alnumc |NN const U8 *p
ApR |bool |is_utf8_idfirst|NN const U8 *p
ApR |bool |is_utf8_xidfirst|NN const U8 *p
AMpR |bool |_is_utf8_perl_idstart|NN const U8 *p