1 #include "array.h"
2 #include "str.h"
3 
array_cats0(array * to,const char * from)4 void array_cats0(array* to,const char* from) {
5   array_catb(to,from,str_len(from)+1);
6 }
7