File: stralloc_cats.c

package info (click to toggle)
ucspi-tcp 0.84-1
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 908 kB
  • ctags: 522
  • sloc: ansic: 4,272; makefile: 764; sh: 289
file content (10 lines) | stat: -rw-r--r-- 150 bytes parent folder | download | duplicates (42)
1
2
3
4
5
6
7
8
9
10
#include "byte.h"
#include "str.h"
#include "stralloc.h"

int stralloc_cats(sa,s)
stralloc *sa;
char *s;
{
  return stralloc_catb(sa,s,str_len(s));
}