summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-09-13 12:43:40 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-09-13 13:01:07 +0200
commit334b0924e9cb80a0a1a60e44bb69faef523ef01c (patch)
tree0f49087141a794cccec8cba850a71e4d54adc830 /handy.h
parent7a12ca83130de638aaff52760e22216d31cfe4db (diff)
downloadperl-334b0924e9cb80a0a1a60e44bb69faef523ef01c.tar.gz
Remove obsolete functions is_uni_alnumc, is_uni_alnumc_lc, is_utf8_alnumc
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/handy.h b/handy.h
index d39066752c..bd58bfed1a 100644
--- a/handy.h
+++ b/handy.h
@@ -557,7 +557,6 @@ US-ASCII (Basic Latin) range are viewed as not having any case.
#define isDIGIT_uni(c) is_uni_digit(c)
#define isUPPER_uni(c) is_uni_upper(c)
#define isLOWER_uni(c) is_uni_lower(c)
-#define isALNUMC_uni(c) is_uni_alnumc(c)
#define isASCII_uni(c) is_uni_ascii(c)
#define isCNTRL_uni(c) is_uni_cntrl(c)
#define isGRAPH_uni(c) is_uni_graph(c)
@@ -579,7 +578,6 @@ US-ASCII (Basic Latin) range are viewed as not having any case.
#define isDIGIT_LC_uvchr(c) (c < 256 ? isDIGIT_LC(c) : is_uni_digit_lc(c))
#define isUPPER_LC_uvchr(c) (c < 256 ? isUPPER_LC(c) : is_uni_upper_lc(c))
#define isLOWER_LC_uvchr(c) (c < 256 ? isLOWER_LC(c) : is_uni_lower_lc(c))
-#define isALNUMC_LC_uvchr(c) (c < 256 ? isALNUMC_LC(c) : is_uni_alnumc_lc(c))
#define isCNTRL_LC_uvchr(c) (c < 256 ? isCNTRL_LC(c) : is_uni_cntrl_lc(c))
#define isGRAPH_LC_uvchr(c) (c < 256 ? isGRAPH_LC(c) : is_uni_graph_lc(c))
#define isPRINT_LC_uvchr(c) (c < 256 ? isPRINT_LC(c) : is_uni_print_lc(c))
@@ -598,7 +596,6 @@ US-ASCII (Basic Latin) range are viewed as not having any case.
#define isDIGIT_utf8(p) is_utf8_digit(p)
#define isUPPER_utf8(p) is_utf8_upper(p)
#define isLOWER_utf8(p) is_utf8_lower(p)
-#define isALNUMC_utf8(p) is_utf8_alnumc(p)
#define isASCII_utf8(p) is_utf8_ascii(p)
#define isCNTRL_utf8(p) is_utf8_cntrl(p)
#define isGRAPH_utf8(p) is_utf8_graph(p)