summaryrefslogtreecommitdiff
path: root/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c
diff options
context:
space:
mode:
Diffstat (limited to 'Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c')
-rw-r--r--Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c b/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c
index 86b6d19ebb..5f41e29e19 100644
--- a/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c
+++ b/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c
@@ -335,44 +335,3 @@ WinNtGopDriverBindingStop (
return Status;
}
-
-/**
- Convert a unicode string to a UINTN
-
- @param String Unicode string.
-
- @return UINTN of the number represented by String.
-
-**/
-UINTN
-Atoi (
- CHAR16 *String
- )
-{
- UINTN Number;
- CHAR16 *Str;
-
- //
- // skip preceeding white space
- //
- Str = String;
- while ((*Str) && (*Str == ' ' || *Str == '"')) {
- Str++;
- }
-
- //
- // Convert ot a Number
- //
- Number = 0;
- while (*Str != '\0') {
- if ((*Str >= '0') && (*Str <= '9')) {
- Number = (Number * 10) +*Str - '0';
- } else {
- break;
- }
-
- Str++;
- }
-
- return Number;
-}