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