We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c3dc14 commit 83de472Copy full SHA for 83de472
hardware/lm4f/cores/lm4f/WCharacter.h
@@ -86,13 +86,11 @@ inline boolean isDigit(int c)
86
}
87
88
89
-//TODO: mspgcc does not seem to have isgraph?!?
90
-
91
-//// Checks for any printable character except space.
92
-//inline boolean isGraph(int c)
93
-//{
94
-// return ( isgraph (c) == 0 ? false : true);
95
-//}
+// Checks for any printable character except space.
+inline boolean isGraph(int c)
+{
+ return ( isgraph (c) == 0 ? false : true);
+}
96
97
98
// Checks for a lower-case character.
0 commit comments