From 4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 27 Mar 2012 11:51:08 +0200 Subject: reorganize file structure to match the upstream requirements --- pintos-progos/lib/ctype.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 pintos-progos/lib/ctype.h (limited to 'pintos-progos/lib/ctype.h') diff --git a/pintos-progos/lib/ctype.h b/pintos-progos/lib/ctype.h deleted file mode 100644 index 9096aca..0000000 --- a/pintos-progos/lib/ctype.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef __LIB_CTYPE_H -#define __LIB_CTYPE_H - -static inline int islower (int c) { return c >= 'a' && c <= 'z'; } -static inline int isupper (int c) { return c >= 'A' && c <= 'Z'; } -static inline int isalpha (int c) { return islower (c) || isupper (c); } -static inline int isdigit (int c) { return c >= '0' && c <= '9'; } -static inline int isalnum (int c) { return isalpha (c) || isdigit (c); } -static inline int isxdigit (int c) { - return isdigit (c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'); -} -static inline int isspace (int c) { - return (c == ' ' || c == '\f' || c == '\n' - || c == '\r' || c == '\t' || c == '\v'); -} -static inline int isblank (int c) { return c == ' ' || c == '\t'; } -static inline int isgraph (int c) { return c > 32 && c < 127; } -static inline int isprint (int c) { return c >= 32 && c < 127; } -static inline int iscntrl (int c) { return (c >= 0 && c < 32) || c == 127; } -static inline int isascii (int c) { return c >= 0 && c < 128; } -static inline int ispunct (int c) { - return isprint (c) && !isalnum (c) && !isspace (c); -} - -static inline int tolower (int c) { return isupper (c) ? c - 'A' + 'a' : c; } -static inline int toupper (int c) { return islower (c) ? c - 'a' + 'A' : c; } - -#endif /* lib/ctype.h */ -- cgit v1.2.3