EmbeddedPkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the EmbeddedPkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Andrew Fish <afish@apple.com>
This commit is contained in:
committed by
mergify[bot]
parent
731c67e1d7
commit
e7108d0e96
@@ -9,24 +9,29 @@
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
|
||||
unsigned long strtoul(const char *nptr, char **endptr, int base)
|
||||
unsigned long
|
||||
strtoul (
|
||||
const char *nptr,
|
||||
char **endptr,
|
||||
int base
|
||||
)
|
||||
{
|
||||
RETURN_STATUS Status;
|
||||
UINTN ReturnValue;
|
||||
RETURN_STATUS Status;
|
||||
UINTN ReturnValue;
|
||||
|
||||
ASSERT (base == 10 || base == 16);
|
||||
ASSERT (base == 10 || base == 16);
|
||||
|
||||
if (base == 10) {
|
||||
Status = AsciiStrDecimalToUintnS (nptr, endptr, &ReturnValue);
|
||||
} else if (base == 16) {
|
||||
Status = AsciiStrHexToUintnS (nptr, endptr, &ReturnValue);
|
||||
} else {
|
||||
Status = RETURN_INVALID_PARAMETER;
|
||||
}
|
||||
if (base == 10) {
|
||||
Status = AsciiStrDecimalToUintnS (nptr, endptr, &ReturnValue);
|
||||
} else if (base == 16) {
|
||||
Status = AsciiStrHexToUintnS (nptr, endptr, &ReturnValue);
|
||||
} else {
|
||||
Status = RETURN_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
if (RETURN_ERROR (Status)) {
|
||||
return MAX_UINTN;
|
||||
}
|
||||
if (RETURN_ERROR (Status)) {
|
||||
return MAX_UINTN;
|
||||
}
|
||||
|
||||
return ReturnValue;
|
||||
return ReturnValue;
|
||||
}
|
||||
|
Reference in New Issue
Block a user