summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/string/utf-8-case.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-11 21:37:59 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-11 21:37:59 +0000
commit485c4d3dd5e978987010fa329cfd9917ccbf9b5d (patch)
tree5333c57322140dbdae4a4acfab5781b0d97d3b8f /src/VBox/Runtime/common/string/utf-8-case.cpp
parent38495bc34974946f445e9d4539b132a0b998550b (diff)
downloadVirtualBox-svn-485c4d3dd5e978987010fa329cfd9917ccbf9b5d.tar.gz
IPRT: Make doxygen 1.9.6 happy. Mostly removing duplicate docs (iprt is documented in the header files). bugref:10442
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@99758 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/common/string/utf-8-case.cpp')
-rw-r--r--src/VBox/Runtime/common/string/utf-8-case.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/VBox/Runtime/common/string/utf-8-case.cpp b/src/VBox/Runtime/common/string/utf-8-case.cpp
index 63aab664aea..7d91cf54c57 100644
--- a/src/VBox/Runtime/common/string/utf-8-case.cpp
+++ b/src/VBox/Runtime/common/string/utf-8-case.cpp
@@ -49,25 +49,6 @@
-/**
- * Performs a case insensitive string compare between two UTF-8 strings.
- *
- * This is a simplified compare, as only the simplified lower/upper case folding
- * specified by the unicode specs are used. It does not consider character pairs
- * as they are used in some languages, just simple upper & lower case compares.
- *
- * The result is the difference between the mismatching codepoints after they
- * both have been lower cased.
- *
- * If the string encoding is invalid the function will assert (strict builds)
- * and use RTStrCmp for the remainder of the string.
- *
- * @returns < 0 if the first string less than the second string.
- * @returns 0 if the first string identical to the second string.
- * @returns > 0 if the first string greater than the second string.
- * @param psz1 First UTF-8 string. Null is allowed.
- * @param psz2 Second UTF-8 string. Null is allowed.
- */
RTDECL(int) RTStrICmp(const char *psz1, const char *psz2)
{
if (psz1 == psz2)
@@ -124,27 +105,6 @@ RTDECL(int) RTStrICmp(const char *psz1, const char *psz2)
RT_EXPORT_SYMBOL(RTStrICmp);
-/**
- * Performs a case insensitive string compare between two UTF-8 strings, given a
- * maximum string length.
- *
- * This is a simplified compare, as only the simplified lower/upper case folding
- * specified by the unicode specs are used. It does not consider character pairs
- * as they are used in some languages, just simple upper & lower case compares.
- *
- * The result is the difference between the mismatching codepoints after they
- * both have been lower cased.
- *
- * If the string encoding is invalid the function will assert (strict builds)
- * and use RTStrCmp for the remainder of the string.
- *
- * @returns < 0 if the first string less than the second string.
- * @returns 0 if the first string identical to the second string.
- * @returns > 0 if the first string greater than the second string.
- * @param psz1 First UTF-8 string. Null is allowed.
- * @param psz2 Second UTF-8 string. Null is allowed.
- * @param cchMax Maximum string length
- */
RTDECL(int) RTStrNICmp(const char *psz1, const char *psz2, size_t cchMax)
{
if (cchMax == 0)