suitcase

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

stralloc_cats.c (165B)


      1 #include "byte.h"
      2 #include "str.h"
      3 #include "ta_stralloc/stralloc.h"
      4 
      5 int stralloc_cats(stralloc *sa, char *s) // PTYPE
      6 {
      7   return stralloc_catb(sa,s,str_len(s));
      8 }