You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
klish/lub/string/string_cat.c

15 lines
325 B

/*
* string_cat.c
*/
#include "private.h"
#include <string.h>
/*--------------------------------------------------------- */
void lub_string_cat(char **string, const char *text)
{
size_t len = text ? strlen(text) : 0;
lub_string_catn(string, text, len);
}
/*--------------------------------------------------------- */