summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-12-19 13:27:08 -0700
committerKarl Williamson <public@khwilliamson.com>2012-12-22 11:11:32 -0700
commitdd66872884ceadf7ea6b1f4f7872a8403a9eefdf (patch)
treee0403db267ac72a35777b57bb035a82523c9cc91 /proto.h
parentc7304fe2c9745e293d050d449bf599d84292f7b7 (diff)
downloadperl-dd66872884ceadf7ea6b1f4f7872a8403a9eefdf.tar.gz
utf8.c: Remove two internal now unused functions.
These functions were used internally as helpers for matching \X in regular expressions. They are no longer used.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/proto.h b/proto.h
index 70b2dd4074..ae3e254ca4 100644
--- a/proto.h
+++ b/proto.h
@@ -7334,18 +7334,6 @@ PERL_CALLCONV UV Perl__to_fold_latin1(pTHX_ const U8 c, U8 *p, STRLEN *lenp, con
#define PERL_ARGS_ASSERT__TO_FOLD_LATIN1 \
assert(p); assert(lenp)
-PERL_CALLCONV bool Perl_is_utf8_X_extend(pTHX_ const U8 *p)
- __attribute__warn_unused_result__
- __attribute__nonnull__(pTHX_1);
-#define PERL_ARGS_ASSERT_IS_UTF8_X_EXTEND \
- assert(p)
-
-PERL_CALLCONV bool Perl_is_utf8_X_regular_begin(pTHX_ const U8 *p)
- __attribute__warn_unused_result__
- __attribute__nonnull__(pTHX_1);
-#define PERL_ARGS_ASSERT_IS_UTF8_X_REGULAR_BEGIN \
- assert(p)
-
#endif
#if defined(PERL_IN_UTIL_C)
STATIC bool S_ckwarn_common(pTHX_ U32 w);