changeset 486:bf984b494f07

Add function argument name to prototypes.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 19 Sep 2019 06:18:18 +0300
parents 4a3d561d5406
children 702c64a6c570
files th_string.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/th_string.h	Sat May 04 03:00:23 2019 +0300
+++ b/th_string.h	Thu Sep 19 06:18:18 2019 +0300
@@ -92,8 +92,8 @@
  */
 char    *th_strdup(const char *src);
 char    *th_strndup(const char *src, const size_t n);
-char    *th_strdup_trim(const char *, const int flags);
-char    *th_strndup_trim(const char *, const size_t n, const int flags);
+char    *th_strdup_trim(const char *src, const int flags);
+char    *th_strndup_trim(const char *src, const size_t n, const int flags);
 
 int     th_strcasecmp(const char *haystack, const char *needle);
 int     th_strncasecmp(const char *haystack, const char *needle, size_t n);