From 5bee88c4d0f9fdbc8fb3758a5cc93c1aff38f2c9 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Thu, 8 Aug 2024 08:23:18 +0200 Subject: [PATCH] [winpr,string] fix variable names in doxygen --- winpr/include/winpr/string.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/winpr/include/winpr/string.h b/winpr/include/winpr/string.h index 09b253c33..3da8fc5b9 100644 --- a/winpr/include/winpr/string.h +++ b/winpr/include/winpr/string.h @@ -258,7 +258,7 @@ extern "C" * * The function does string conversions of any '\0' terminated input string * - * Supplying len = 0 will return the required size of the buffer in characters. + * Supplying wlen = 0 will return the required size of the buffer in characters. * * \warning Supplying a buffer length smaller than required will result in * platform dependent (=undefined) behaviour! @@ -276,7 +276,7 @@ extern "C" * The function does string conversions of any input string of len (or less) * characters until it reaches the first '\0'. * - * Supplying len = 0 will return the required size of the buffer in characters. + * Supplying wlen = 0 will return the required size of the buffer in characters. * * \warning Supplying a buffer length smaller than required will result in * platform dependent (=undefined) behaviour! @@ -295,7 +295,7 @@ extern "C" * The function does string conversions of any input string of len characters. * Any character in the buffer (incuding any '\0') is converted. * - * Supplying len = 0 will return the required size of the buffer in characters. + * Supplying wlen = 0 will return the required size of the buffer in characters. * * \warning Supplying a buffer length smaller than required will result in * platform dependent (=undefined) behaviour!