blob: ea1e2903a5421f2c9d01b20cc861a6759eb3c5de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* Public domain. */
#include "byte.h"
#include "str.h"
#include "stralloc.h"
int stralloc_cats(stralloc *sa,const char *s)
{
return stralloc_catb(sa,s,str_len(s));
}
|