]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/ctype.h
Update or add comments to files and functions for use by Doxygen.
[mirror_edk2.git] / StdLib / Include / ctype.h
index 64bccd5f669470e82826a0748402427f0b859d32..fb0e2fd7d346fa481c4fbb054a516dfda308b04d 100644 (file)
@@ -55,6 +55,17 @@ int isalnum(int c);
 **/\r
 int isalpha(int c);\r
 \r
+/** The isblank function tests that a character is a white-space character that results\r
+    in a number of space (' ') characters being sent to the output device.  In the C locale\r
+    this is either ' ' or '\t'.\r
+\r
+    @param[in]    c   The character to be tested.\r
+\r
+    @return   Returns nonzero (true) if and only if the value of the parameter c\r
+              can be classified as specified in the description of the function.\r
+**/\r
+int isblank(int);\r
+\r
 /** The iscntrl function tests for any control character.\r
 \r
     @param[in]    c   The character to be tested.\r
@@ -150,18 +161,8 @@ int isupper(int c);
 **/\r
 int isxdigit(int c);\r
 \r
-/** The isblank function tests that a character is a white-space character that results\r
-    in a number of space (' ') characters being sent to the output device.  In the C locale\r
-    this is either ' ' or '\t'.\r
-\r
-    @param[in]    c   The character to be tested.\r
-\r
-    @return   Returns nonzero (true) if and only if the value of the parameter c\r
-              can be classified as specified in the description of the function.\r
-**/\r
-int isblank(int);\r
-\r
 /** The isascii function tests that a character is one of the 128 7-bit ASCII characters.\r
+    This function is not part of the C standard, but is commonly used.\r
 \r
     @param[in]    c   The character to be tested.\r
 \r