summaryrefslogtreecommitdiff
path: root/stralloc_opys.c
blob: 78594b08bb816fc43d1a59cd5607680e53b8e2b0 (plain)
1
2
3
4
5
6
7
8
#include "byte.h"
#include "str.h"
#include "stralloc.h"

int stralloc_copys(stralloc *sa,char *s)
{
  return stralloc_copyb(sa,s,str_len(s));
}