28inline bool isAlphaNumeric(
int c) __attribute__((always_inline));
29inline bool isAlpha(
int c) __attribute__((always_inline));
30inline bool isAscii(
int c) __attribute__((always_inline));
31inline bool isWhitespace(
int c) __attribute__((always_inline));
32inline bool isControl(
int c) __attribute__((always_inline));
33inline bool isDigit(
int c) __attribute__((always_inline));
34inline bool isGraph(
int c) __attribute__((always_inline));
35inline bool isLowerCase(
int c) __attribute__((always_inline));
36inline bool isPrintable(
int c) __attribute__((always_inline));
37inline bool isPunct(
int c) __attribute__((always_inline));
38inline bool isSpace(
int c) __attribute__((always_inline));
39inline bool isUpperCase(
int c) __attribute__((always_inline));
40inline bool isHexadecimalDigit(
int c) __attribute__((always_inline));
41inline int toAscii(
int c) __attribute__((always_inline));
42inline int toLowerCase(
int c) __attribute__((always_inline));
43inline int toUpperCase(
int c)__attribute__((always_inline));
48inline bool isAlphaNumeric(
int c)
50 return ( isalnum(c) == 0 ?
false : true);
56inline bool isAlpha(
int c)
58 return ( isalpha(c) == 0 ?
false : true);
64inline bool isAscii(
int c)
66 return ((c & ~0x7f) != 0 ?
false : true );
71inline bool isWhitespace(
int c)
73 return ( c ==
'\t' || c ==
' ');
78inline bool isControl(
int c)
80 return ( iscntrl (c) == 0 ?
false : true);
85inline bool isDigit(
int c)
87 return ( isdigit (c) == 0 ?
false : true);
92inline bool isGraph(
int c)
94 return ( isgraph (c) == 0 ?
false : true);
99inline bool isLowerCase(
int c)
101 return ( c >=
'a' && c <=
'z' );
106inline bool isPrintable(
int c)
108 return ( isprint (c) == 0 ?
false : true);
114inline bool isPunct(
int c)
116 return ( isPrintable(c) && !isSpace(c) && !isAlphaNumeric(c) );
123inline bool isSpace(
int c)
125 return ( isspace (c) == 0 ?
false : true);
130inline bool isUpperCase(
int c)
132 return ( isupper (c) == 0 ?
false : true);
138inline bool isHexadecimalDigit(
int c)
140 return ( isxdigit (c) == 0 ?
false : true);
146inline int toAscii(
int c)
158inline int toLowerCase(
int c)
165inline int toUpperCase(
int c)
We provide the WiFi class to simulate the Arduino WIFI. In in Linux we can expect that networking is ...
Definition CanMsg.cpp:31