Skip to content

Commit 5ee6cfa

Browse files
soburiCopilot
andauthored
Update cores/arduino/zephyr/api/WCharacter.h
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 394a809 commit 5ee6cfa

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

cores/arduino/zephyr/api/WCharacter.h

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,63 +8,63 @@ ALWAYS_INLINE bool isAlphaNumeric(int c) {
88
return !!isalnum(c);
99
}
1010

11-
ALWASY_INLINE bool isAlpha(int c) {
11+
ALWAYS_INLINE bool isAlpha(int c) {
1212
return !!isalpha(c);
1313
}
1414

15-
ALWASY_INLINE bool isAscii(int c) {
15+
ALWAYS_INLINE bool isAscii(int c) {
1616
return !!isascii(c);
1717
}
1818

19-
ALWASY_INLINE bool isWhitespace(int c) {
19+
ALWAYS_INLINE bool isWhitespace(int c) {
2020
return !!isblank(c);
2121
}
2222

23-
ALWASY_INLINE bool isControl(int c) {
23+
ALWAYS_INLINE bool isControl(int c) {
2424
return !!iscntrl(c);
2525
}
2626

27-
ALWASY_INLINE bool isDigit(int c) {
27+
ALWAYS_INLINE bool isDigit(int c) {
2828
return !!isdigit(c);
2929
}
3030

31-
ALWASY_INLINE bool isGraph(int c) {
31+
ALWAYS_INLINE bool isGraph(int c) {
3232
return !!isgraph(c);
3333
}
3434

35-
ALWASY_INLINE bool isLowerCase(int c)
35+
ALWAYS_INLINE bool isLowerCase(int c) {
3636
return !!islower(c);
3737
}
3838

39-
ALWASY_INLINE bool isPrintable(int c) {
39+
ALWAYS_INLINE bool isPrintable(int c) {
4040
return !!isprint(c);
4141
}
4242

43-
ALWASY_INLINE bool isPunct(int c)
43+
ALWAYS_INLINE bool isPunct(int c) {
4444
return !!ispunct(c);
4545
}
4646

47-
ALWASY_INLINE bool isSpace(int c) {
47+
ALWAYS_INLINE bool isSpace(int c) {
4848
return !!isspace(c);
4949
}
5050

51-
ALWASY_INLINE bool isUpperCase(int c) {
51+
ALWAYS_INLINE bool isUpperCase(int c) {
5252
return !!isupper(c);
5353
}
5454

55-
ALWASY_INLINE bool isHexadecimalDigit(int c) {
55+
ALWAYS_INLINE bool isHexadecimalDigit(int c) {
5656
return !!isxdigit(c);
5757
}
5858

59-
ALWASY_INLINE int toAscii(int c)
59+
ALWAYS_INLINE int toAscii(int c) {
6060
return toascii(c);
6161
}
6262

63-
ALWASY_INLINE int toLowerCase(int c) {
63+
ALWAYS_INLINE int toLowerCase(int c) {
6464
return tolower(c);
6565
}
6666

67-
ALWASY_INLINE int toUpperCase(int c) {
67+
ALWAYS_INLINE int toUpperCase(int c) {
6868
return toupper(c);
6969
}
7070

0 commit comments

Comments
 (0)