diff options
author | axtlos <axtlos@disroot.org> | 2024-09-27 21:31:47 +0200 |
---|---|---|
committer | axtlos <axtlos@disroot.org> | 2024-09-27 21:31:47 +0200 |
commit | b2182396df5d99ff5c26161aaffa5ced879742c5 (patch) | |
tree | c848fc157ab55c63b49b063d212c1671fa41afae /src/extlib.h | |
parent | 7aa261f8d57cb53cc334f6bf1920a6f8517ff054 (diff) | |
download | extlib-b2182396df5d99ff5c26161aaffa5ced879742c5.tar.gz extlib-b2182396df5d99ff5c26161aaffa5ced879742c5.tar.bz2 |
Fix join_str on musl and add manpage
Diffstat (limited to 'src/extlib.h')
-rw-r--r-- | src/extlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |