Concatenate strings
#include <firestring.h>
-lfirestring
char *firestring_concat(const char *s, ...)
firestring_concat() expects a set of const char *'s to nil-terminated strings. It returns a dynamically allocated string containing all of the input strings concatenated.
A pointer to a dynamically allocated string. This string should be freed by passing the pointer to free(3) when the program is finished with it, to avoid memory leaks.
Ian Gulliver <[email protected]>