From: David Levine Date: Thu, 28 Feb 2013 01:31:31 +0000 (-0600) Subject: Added tolower(), toupper(), and toascii() to X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/9151385b9fed8c75663fb9299075cee080219990?ds=sidebyside;hp=--cc Added tolower(), toupper(), and toascii() to gen-ctype-checked.c. --- 9151385b9fed8c75663fb9299075cee080219990 diff --git a/etc/gen-ctype-checked.c b/etc/gen-ctype-checked.c index 60191673..61c37b48 100644 --- a/etc/gen-ctype-checked.c +++ b/etc/gen-ctype-checked.c @@ -31,11 +31,14 @@ X(isspace) \ X(isupper) \ X(isxdigit) \ + X(tolower) \ + X(toupper) \ #if (defined (_BSD_SOURCE) && _BSD_SOURCE) || \ (defined (_SVID_SOURCE) && _SVID_SOURCE) || \ (defined (_XOPEN_SOURCE) && _XOPEN_SOURCE) -# define CTYPE_FUNCTION_ISASCII X(isascii) +# define CTYPE_FUNCTION_ISASCII X(isascii) \ + X(toascii) #else # define CTYPE_FUNCTION_ISASCII #endif