TianoCore EDK2 master
Loading...
Searching...
No Matches
ShellCTestApp.c
Go to the documentation of this file.
1
10#include <Uefi.h>
11#include <Library/UefiLib.h>
12#include <Library/DebugLib.h>
14
29INTN
30EFIAPI
32 IN UINTN Argc,
33 IN CHAR16 **Argv
34 )
35{
36 UINTN Index;
37
38 if (Argc == 1) {
39 Print (L"Argv[1] = NULL\n");
40 }
41
42 for (Index = 1; Index < Argc; Index++) {
43 Print (L"Argv[%d]: \"%s\"\n", Index, Argv[Index]);
44 }
45
46 return 0;
47}
UINT64 UINTN
INT64 INTN
#define IN
Definition: Base.h:279
INTN EFIAPI ShellAppMain(IN UINTN Argc, IN CHAR16 **Argv)
Definition: ShellCTestApp.c:31
UINTN EFIAPI Print(IN CONST CHAR16 *Format,...)
Definition: UefiLibPrint.c:113