1 #include "byte.h"
2 #include "str.h"
3 #include "stralloc.h"
4 
stralloc_copys(stralloc * sa,char * s)5 int stralloc_copys(stralloc *sa,char *s)
6 {
7   return stralloc_copyb(sa,s,str_len(s));
8 }
9