mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-29 12:35:53 +01:00
01f33f7552
stylish change: remove space between func and brace Signed-off-by: SergeySlice <sergey.slice@gmail.com>
27 lines
602 B
C
27 lines
602 B
C
/** @file
|
|
|
|
Module to rewrite stdlib references within Oniguruma
|
|
|
|
(C) Copyright 2014-2015 Hewlett Packard Enterprise Development LP<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
#include "OnigurumaUefiPort.h"
|
|
|
|
int EFIAPI sprintf_s(char *str, size_t sizeOfBuffer, char const *fmt, ...)
|
|
{
|
|
VA_LIST Marker;
|
|
int NumberOfPrinted;
|
|
|
|
VA_START (Marker, fmt);
|
|
NumberOfPrinted = (int)AsciiVSPrint (str, sizeOfBuffer, fmt, Marker);
|
|
VA_END (Marker);
|
|
|
|
return NumberOfPrinted;
|
|
}
|
|
|
|
int OnigStrCmp (char* Str1, char* Str2)
|
|
{
|
|
return (int)AsciiStrCmp(Str1, Str2);
|
|
}
|