Import ezmlm 0.53
[ezmlm] / stralloc_opyb.c
CommitLineData
5b62e993
MW
1#include "stralloc.h"
2#include "byte.h"
3
4int stralloc_copyb(sa,s,n)
5stralloc *sa;
6char *s;
7unsigned int n;
8{
9 if (!stralloc_ready(sa,n + 1)) return 0;
10 byte_copy(sa->s,n,s);
11 sa->len = n;
12 sa->s[n] = 'Z'; /* ``offensive programming'' */
13 return 1;
14}