wsutil: fix code according to clang-tidy.

Change-Id: I7b4caed147c5813d7c9737c551b8bf1a7be48929
Reviewed-on: https://code.wireshark.org/review/31361
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
This commit is contained in:
Dario Lombardo 2019-01-04 14:12:04 +01:00 committed by Peter Wu
parent 905d87a28f
commit bbf77f935e
1 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ gchar *ascii_strup_inplace(gchar *str);
* @return TRUE if the entire string is printable, otherwise FALSE
*/
WS_DLL_PUBLIC
gboolean isprint_string(const gchar *string);
gboolean isprint_string(const gchar *str);
/** Check if an entire UTF-8 string consists of printable characters
*
@ -69,7 +69,7 @@ gboolean isprint_string(const gchar *string);
* @return TRUE if the entire string is printable, otherwise FALSE
*/
WS_DLL_PUBLIC
gboolean isprint_utf8_string(const gchar *string, guint length);
gboolean isprint_utf8_string(const gchar *str, guint length);
/** Check if an entire string consists of digits
*
@ -77,7 +77,7 @@ gboolean isprint_utf8_string(const gchar *string, guint length);
* @return TRUE if the entire string is digits, otherwise FALSE
*/
WS_DLL_PUBLIC
gboolean isdigit_string(const guchar *string);
gboolean isdigit_string(const guchar *str);
WS_DLL_PUBLIC
int ws_xton(char ch);