chiark / gitweb /
Debianization, and minor fixes.
[fastforward] / stralloc_opys.c
CommitLineData
8d5530c4
MW
1#include "byte.h"
2#include "str.h"
3#include "stralloc.h"
4
5int stralloc_copys(sa,s)
6stralloc *sa;
7char *s;
8{
9 return stralloc_copyb(sa,s,str_len(s));
10}