suitcase

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

stralloc_copy.c (171B)


      1 #include "byte.h"
      2 #include "ta_stralloc/stralloc.h"
      3 
      4 int stralloc_copy(stralloc *sato, stralloc *safrom) // PTYPE
      5 {
      6   return stralloc_copyb(sato,safrom->s,safrom->len);
      7 }