mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
11 lines
170 B
C
11 lines
170 B
C
/* Public domain. */
|
|
|
|
#include "byte.h"
|
|
#include "str.h"
|
|
#include "stralloc.h"
|
|
|
|
int stralloc_cats(stralloc *sa,const char *s)
|
|
{
|
|
return stralloc_catb(sa,s,strlen(s));
|
|
}
|