diff options
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); |