Files
slimbootloader/BootloaderCommonPkg/Library/SortLib/SortLib.inf
T
Aiden Park d2ea80b5c9 Add InsertionSort for Linked List (#454)
This provides basic insertion sort API for Linked List. As part of change,
this insertion sort is used for PCI BAR calculation by its alignment
and for shell commands list by its name.

Signed-off-by: Aiden Park <aiden.park@intel.com>
2019-11-14 11:26:31 -08:00

35 lines
710 B
INI

## @file
# Library used for sorting routines.
#
# Copyright (c) 2009 - 2019, Intel Corporation. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
#
##
[Defines]
INF_VERSION = 0x00010006
BASE_NAME = SortLib
FILE_GUID = 03F3331B-F12D-494f-BF37-E55A657F2497
MODULE_TYPE = BASE
VERSION_STRING = 1.0
LIBRARY_CLASS = SortLib
#
# VALID_ARCHITECTURES = IA32 X64 EBC
#
[Sources.common]
SortLib.c
InsertionSort.c
[Packages]
MdePkg/MdePkg.dec
BootloaderCommonPkg/BootloaderCommonPkg.dec
[LibraryClasses]
BaseLib
BaseMemoryLib
DebugLib