summaryrefslogtreecommitdiff
path: root/src/libc/include/ctype.h
blob: 09309c16397052e15e444b8a4e43faf77bbb9896 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * <ctype.h>
 *
 * Open Hack'Ware BIOS POSIX like ctype definitions
 * 
 * Copyright (c) 2004-2005 Jocelyn Mayer
 * 
 *   This program is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU General Public License V2
 *   as published by the Free Software Foundation
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#if !defined (__OHW_CTYPE_H__)
#define __OHW_CTYPE_H__

/* Beware that those routines only support ASCII */
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 isgraph (int c)
{
    return (c >= 0x21 && c <= 0x7E) || (c >= 0xA1 && c <= 0xFF);
}

static inline int isprint (int c)
{
    return isgraph(c) && c != ' ';
}

static inline int ispunct (int c)
{
    return isprint(c) && !isalpha(c) && !isspace(c);
}

static inline int isblank (int c)
{
    return c == ' ' || c == '\t';
}

static inline int iscntrl (int c)
{
    return !isprint(c);
}

static inline int isascii (int c)
{
    return (c & 0x80) == 0;
}

static inline int tolower (int c)
{
    if (isupper(c))
        c |= 0x20;

    return c;
}

static inline int toupper (int c)
{
    if (islower(c))
        c &= ~0x20;

    return c;
}

static inline int toascii (int c)
{
    return c & ~0x80;
}

#endif /* !defined (__OHW_CTYPE_H__) */