plan9port/src/libString/s_append.c
2003-12-11 18:15:57 +00:00

17 lines
273 B
C

#include <u.h>
#include <libc.h>
#include "libString.h"
/* append a char array to a String */
String *
s_append(String *to, char *from)
{
if (to == 0)
to = s_new();
if (from == 0)
return to;
for(; *from; from++)
s_putc(to, *from);
s_terminate(to);
return to;
}