]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - ShellPkg/Application/ShellCTestApp/ShellCTestApp.c
ShellPkg: Update Ifconfig command to accept 32bit subnet mask.
[mirror_edk2.git] / ShellPkg / Application / ShellCTestApp / ShellCTestApp.c
... / ...
CommitLineData
1/** @file\r
2 This is a test application that demonstrates how to use the C-style entry point\r
3 for a shell application.\r
4\r
5 Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR>\r
6 This program and the accompanying materials\r
7 are licensed and made available under the terms and conditions of the BSD License\r
8 which accompanies this distribution. The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.php\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#include <Uefi.h>\r
17#include <Library/UefiLib.h>\r
18#include <Library/DebugLib.h>\r
19#include <Library/ShellCEntryLib.h>\r
20\r
21/**\r
22 UEFI application entry point which has an interface similar to a\r
23 standard C main function.\r
24\r
25 The ShellCEntryLib library instance wrappers the actual UEFI application\r
26 entry point and calls this ShellAppMain function.\r
27\r
28 @param[in] Argc The number of items in Argv.\r
29 @param[in] Argv Array of pointers to strings.\r
30\r
31 @retval 0 The application exited normally.\r
32 @retval Other An error occurred.\r
33\r
34**/\r
35INTN\r
36EFIAPI\r
37ShellAppMain (\r
38 IN UINTN Argc,\r
39 IN CHAR16 **Argv\r
40 )\r
41{\r
42 UINTN Index;\r
43 if (Argc == 1) {\r
44 Print (L"Argv[1] = NULL\n");\r
45 }\r
46 for (Index = 1; Index < Argc; Index++) {\r
47 Print(L"Argv[%d]: \"%s\"\n", Index, Argv[Index]);\r
48 }\r
49\r
50 return 0;\r
51}\r