Update or add comments to files and functions for use by Doxygen.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12090 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
darylm503
2011-08-04 23:35:57 +00:00
parent 681cc25c17
commit 8379337c91
11 changed files with 247 additions and 188 deletions

View File

@@ -55,6 +55,17 @@ int isalnum(int c);
**/
int isalpha(int c);
/** The isblank function tests that a character is a white-space character that results
in a number of space (' ') characters being sent to the output device. In the C locale
this is either ' ' or '\t'.
@param[in] c The character to be tested.
@return Returns nonzero (true) if and only if the value of the parameter c
can be classified as specified in the description of the function.
**/
int isblank(int);
/** The iscntrl function tests for any control character.
@param[in] c The character to be tested.
@@ -150,18 +161,8 @@ int isupper(int c);
**/
int isxdigit(int c);
/** The isblank function tests that a character is a white-space character that results
in a number of space (' ') characters being sent to the output device. In the C locale
this is either ' ' or '\t'.
@param[in] c The character to be tested.
@return Returns nonzero (true) if and only if the value of the parameter c
can be classified as specified in the description of the function.
**/
int isblank(int);
/** The isascii function tests that a character is one of the 128 7-bit ASCII characters.
This function is not part of the C standard, but is commonly used.
@param[in] c The character to be tested.