summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-09-28 09:44:52 -0600
committerKarl Williamson <public@khwilliamson.com>2011-10-01 09:58:09 -0600
commitb6912c02aa553169d6b7158ab7a2ddc26d60974f (patch)
tree06b9f52a35b34262105939c684c7f28565a8957d /utf8.c
parentee24a51cf0c68318494d0b1e0fc805878089915d (diff)
downloadperl-b6912c02aa553169d6b7158ab7a2ddc26d60974f.tar.gz
utf8.c: Add function to retrieve new _Perl_IDStart prop
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/utf8.c b/utf8.c
index 62fdf18a36..1773f2e34c 100644
--- a/utf8.c
+++ b/utf8.c
@@ -1510,6 +1510,16 @@ Perl_is_utf8_xidfirst(pTHX_ const U8 *p) /* The naming is historical. */
}
bool
+Perl__is_utf8__perl_idstart(pTHX_ const U8 *p)
+{
+ dVAR;
+
+ PERL_ARGS_ASSERT__IS_UTF8__PERL_IDSTART;
+
+ return is_utf8_common(p, &PL_utf8_perl_idstart, "_Perl_IDStart");
+}
+
+bool
Perl_is_utf8_idcont(pTHX_ const U8 *p)
{
dVAR;