]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Application/ShellCTestApp/ShellCTestApp.c
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8633 6f19259b...
[mirror_edk2.git] / ShellPkg / Application / ShellCTestApp / ShellCTestApp.c
CommitLineData
722529bb 1/** @file\r
2 This is THE shell (application)\r
3\r
4 Copyright (c) 2009, Intel Corporation \r
5 All rights reserved. This program and the accompanying materials \r
6 are licensed and made available under the terms and conditions of the BSD License \r
7 which accompanies this distribution. The full text of the license may be found at \r
8 http://opensource.org/licenses/bsd-license.php \r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
13**/\r
14\r
15#include <Uefi.h>\r
16\r
17#include <Library/UefiLib.h>\r
18#include <Library/DebugLib.h>\r
19\r
39157531 20INTN \r
722529bb 21EFIAPI \r
39157531 22ShellAppMain (\r
23 IN INTN Argc, \r
24 IN CHAR16 **Argv\r
25 )\r
26{\r
27 INTN Index;\r
28\r
29 Print(L"ShellCTestApp.c:ShellAppMain called with %d parameters\n", Argc);\r
30 for (Index = 0; Index < Argc; Index++) {\r
31 Print(L"Argv[%d]: %s\n", Index, Argv[Index]);\r
32 }\r
33\r
34 return 0;\r
722529bb 35}