fixed more issues by scrubbing.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7457 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jgong5
2009-02-06 05:47:32 +00:00
parent c24b392c30
commit d59b8b55d7
5 changed files with 38 additions and 62 deletions

View File

@@ -45,8 +45,7 @@ VOID
PxeBcCommonNotify (
IN EFI_EVENT Event,
IN VOID *Context
)
;
);
/**
@@ -101,8 +100,8 @@ CvtNum (
/**
Convert unsigned int number to decimal number.
@param Number The unsigned int number will be converted.
@param Buffer Pointer to the buffer to store the decimal number after transform.
@param Number The unsigned int number will be converted.
@param Buffer Pointer to the buffer to store the decimal number after transform.
@return the length of the number after transform.
@@ -111,23 +110,21 @@ UINTN
UtoA10 (
IN UINTN Number,
IN CHAR8 *Buffer
)
;
);
/**
Convert ASCII numeric string to a UINTN value.
@param Buffer Pointer to the 8-byte unsigned int value.
@return UINTN value of the ASCII string.
**/
UINT64
AtoU64 (
IN UINT8 *Buffer
)
;
);
#endif