From c6d555add9388b319cbfc177092974f05943c491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Tue, 7 Dec 2004 17:24:16 +0000 Subject: [PATCH] added _tolower and _toupper git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10369 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/ctype.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/headers/posix/ctype.h b/headers/posix/ctype.h index 3407151b81..493ffea050 100644 --- a/headers/posix/ctype.h +++ b/headers/posix/ctype.h @@ -54,6 +54,8 @@ extern const int *__ctype_toupper; #define tolower(c) ((int)__ctype_tolower[(int)(c)]) #define toupper(c) ((int)__ctype_toupper[(int)(c)]) +#define _tolower(c) tolower(c) +#define _toupper(c) toupper(c) #define isalnum(c) __isctype((c), _ISalnum) #define isalpha(c) __isctype((c), _ISalpha)