Codebase list fastforward / HEAD stralloc_cat.c
HEAD

Tree @HEAD (Download .tar.gz)

stralloc_cat.c @HEADraw · history · blame

1
2
3
4
5
6
7
8
9
#include "byte.h"
#include "stralloc.h"

int stralloc_cat(sato,safrom)
stralloc *sato;
stralloc *safrom;
{
  return stralloc_catb(sato,safrom->s,safrom->len);
}