source: rtos_arduino/trunk/arduino_lib/hardware/arduino/samd/cores/arduino/WCharacter.h@ 136

Last change on this file since 136 was 136, checked in by ertl-honda, 8 years ago

ライブラリとOS及びベーシックなサンプルの追加.

File size: 4.7 KB
Line 
1/*
2 WCharacter.h - Character utility functions for Wiring & Arduino
3 Copyright (c) 2010 Hernando Barragan. All right reserved.
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef Character_h
21#define Character_h
22
23#include <ctype.h>
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29// WCharacter.h prototypes
30#if defined ( __GNUC__ )
31inline boolean isAlphaNumeric(int c) __attribute__((always_inline));
32inline boolean isAlpha(int c) __attribute__((always_inline));
33inline boolean isAscii(int c) __attribute__((always_inline));
34inline boolean isWhitespace(int c) __attribute__((always_inline));
35inline boolean isControl(int c) __attribute__((always_inline));
36inline boolean isDigit(int c) __attribute__((always_inline));
37inline boolean isGraph(int c) __attribute__((always_inline));
38inline boolean isLowerCase(int c) __attribute__((always_inline));
39inline boolean isPrintable(int c) __attribute__((always_inline));
40inline boolean isPunct(int c) __attribute__((always_inline));
41inline boolean isSpace(int c) __attribute__((always_inline));
42inline boolean isUpperCase(int c) __attribute__((always_inline));
43inline boolean isHexadecimalDigit(int c) __attribute__((always_inline));
44inline int toAscii(int c) __attribute__((always_inline));
45inline int toLowerCase(int c) __attribute__((always_inline));
46inline int toUpperCase(int c)__attribute__((always_inline));
47#elif defined ( __ICCARM__ )
48#endif
49
50// Checks for an alphanumeric character.
51// It is equivalent to (isalpha(c) || isdigit(c)).
52inline boolean isAlphaNumeric(int c)
53{
54 return ( isalnum(c) == 0 ? false : true);
55}
56
57
58// Checks for an alphabetic character.
59// It is equivalent to (isupper(c) || islower(c)).
60inline boolean isAlpha(int c)
61{
62 return ( isalpha(c) == 0 ? false : true);
63}
64
65
66// Checks whether c is a 7-bit unsigned char value
67// that fits into the ASCII character set.
68inline boolean isAscii(int c)
69{
70/* return ( isascii(c) == 0 ? false : true); */
71 return ( (c & ~0x7f) != 0 ? false : true);
72}
73
74
75// Checks for a blank character, that is, a space or a tab.
76inline boolean isWhitespace(int c)
77{
78 return ( isblank (c) == 0 ? false : true);
79}
80
81
82// Checks for a control character.
83inline boolean isControl(int c)
84{
85 return ( iscntrl (c) == 0 ? false : true);
86}
87
88
89// Checks for a digit (0 through 9).
90inline boolean isDigit(int c)
91{
92 return ( isdigit (c) == 0 ? false : true);
93}
94
95
96// Checks for any printable character except space.
97inline boolean isGraph(int c)
98{
99 return ( isgraph (c) == 0 ? false : true);
100}
101
102
103// Checks for a lower-case character.
104inline boolean isLowerCase(int c)
105{
106 return (islower (c) == 0 ? false : true);
107}
108
109
110// Checks for any printable character including space.
111inline boolean isPrintable(int c)
112{
113 return ( isprint (c) == 0 ? false : true);
114}
115
116
117// Checks for any printable character which is not a space
118// or an alphanumeric character.
119inline boolean isPunct(int c)
120{
121 return ( ispunct (c) == 0 ? false : true);
122}
123
124
125// Checks for white-space characters. For the avr-libc library,
126// these are: space, formfeed ('\f'), newline ('\n'), carriage
127// return ('\r'), horizontal tab ('\t'), and vertical tab ('\v').
128inline boolean isSpace(int c)
129{
130 return ( isspace (c) == 0 ? false : true);
131}
132
133
134// Checks for an uppercase letter.
135inline boolean isUpperCase(int c)
136{
137 return ( isupper (c) == 0 ? false : true);
138}
139
140
141// Checks for a hexadecimal digits, i.e. one of 0 1 2 3 4 5 6 7
142// 8 9 a b c d e f A B C D E F.
143inline boolean isHexadecimalDigit(int c)
144{
145 return ( isxdigit (c) == 0 ? false : true);
146}
147
148
149// Converts c to a 7-bit unsigned char value that fits into the
150// ASCII character set, by clearing the high-order bits.
151inline int toAscii(int c)
152{
153/* return toascii (c); */
154 return (c & 0x7f);
155}
156
157
158// Warning:
159// Many people will be unhappy if you use this function.
160// This function will convert accented letters into random
161// characters.
162
163// Converts the letter c to lower case, if possible.
164inline int toLowerCase(int c)
165{
166 return tolower (c);
167}
168
169
170// Converts the letter c to upper case, if possible.
171inline int toUpperCase(int c)
172{
173 return toupper (c);
174}
175
176#ifdef __cplusplus
177}
178#endif
179
180#endif
Note: See TracBrowser for help on using the repository browser.