From edb76b96d2cbaa331e7fd9663d864f06d1aca7d8 Mon Sep 17 00:00:00 2001 From: shatty Date: Sat, 16 Aug 2003 07:13:59 +0000 Subject: [PATCH] new posix/beos compatible version in public posix/ctype.h git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4285 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/ctype.h | 35 ---------------------------------- 1 file changed, 35 deletions(-) delete mode 100755 headers/private/kernel/ctype.h diff --git a/headers/private/kernel/ctype.h b/headers/private/kernel/ctype.h deleted file mode 100755 index 8728e2d317..0000000000 --- a/headers/private/kernel/ctype.h +++ /dev/null @@ -1,35 +0,0 @@ -/* -** Copyright 2001, Travis Geiselbrecht. All rights reserved. -** Distributed under the terms of the NewOS License. -*/ -#ifndef _CTYPE_H -#define _CTYPE_H - -#ifdef __cplusplus -extern "C" -{ -#endif - -int isalnum(int c); -int isalpha(int c); -int iscntrl(int c); -int isdigit(int c); -int isgraph(int c); -int islower(int c); -int isprint(int c); -int ispunct(int c); -int isspace(int c); -int isupper(int c); -int isxdigit(int c); -int isascii(int c); -int toascii(int c); - -unsigned char tolower(unsigned char c); -unsigned char toupper(unsigned char c); - -#ifdef __cplusplus -} /* "C" */ -#endif - -#endif -