From 5c5f0a6df9d9d3231957563a8a59ad78e0577617 Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 27 Dec 2022 22:13:48 +0100 Subject: [PATCH] Add missing routine documentation --- xtldr/string.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/xtldr/string.c b/xtldr/string.c index be4815f..2da70a6 100644 --- a/xtldr/string.c +++ b/xtldr/string.c @@ -11,6 +11,19 @@ STATIC PUINT16 HexTable = L"0123456789abcdef"; +/** + * Compares two strings without sensitivity to case. + * + * @param String1 + * First string to be compared. + * + * @param String2 + * Second string to be compared. + * + * @return This routine returns a value indicating the relationship between the two strings. + * + * @since XT 1.0 + */ XTCDECL INT BlStringCompareInsensitive(IN PUCHAR String1,