runit

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

stralloc_cat.c (175B)


      1 /* Public domain. */
      2 
      3 #include "byte.h"
      4 #include "stralloc.h"
      5 
      6 int stralloc_cat(stralloc *sato,const stralloc *safrom)
      7 {
      8   return stralloc_catb(sato,safrom->s,safrom->len);
      9 }