Add note to string_list_join_concat

This commit is contained in:
LibretroAdmin 2022-07-27 15:51:16 +02:00
parent ba752b6364
commit 2c3c9e1e71

View File

@ -164,6 +164,8 @@ void string_list_free(struct string_list *list);
*
* A string list will be joined/concatenated as a
* string to @buffer, delimited by @delim.
*
* NOTE: @buffer must be NULL-terminated.
*/
void string_list_join_concat(char *buffer, size_t size,
const struct string_list *list, const char *sep);