edk2/CryptoPkg/Test/UnitTest/Library/BaseCryptLib/UnitTestMainHost.c
Philipp Schuster f7cba3671e CryptoPkg: fix various typos
Signed-off-by: Philipp Schuster <philipp.schuster@cyberus-technology.de>
2025-11-21 21:49:59 +00:00

28 lines
526 B
C

/** @file
This is a sample to demonstrate the usage of the Unit Test Library that
supports the host execution environments.
Copyright (c) Microsoft Corporation.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "TestBaseCryptLib.h"
VOID
EFIAPI
ProcessLibraryConstructorList (
VOID
);
/**
Standard POSIX C entry point for host based unit test execution.
**/
int
main (
int argc,
char *argv[]
)
{
ProcessLibraryConstructorList ();
return UefiTestMain ();
}