From b2182396df5d99ff5c26161aaffa5ced879742c5 Mon Sep 17 00:00:00 2001 From: axtlos Date: Fri, 27 Sep 2024 21:31:47 +0200 Subject: Fix join_str on musl and add manpage --- src/extlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/extlib.h') diff --git a/src/extlib.h b/src/extlib.h index c36b919..03bb53b 100644 --- a/src/extlib.h +++ b/src/extlib.h @@ -66,7 +66,7 @@ char *trim (char *s, int *rem_front, int *rem_back); char *replace_str (char *s, char *old, char *replace); /// Join an array of strings into one string -char *join_str (char **s, size_t len, char delim); +char *join_str (char **s, size_t len, char *delim); /// Limit a value to a maximum float max (float v, float max_v); -- cgit v1.2.3