blob: bb03405450efa563bd2d76e153947290cae872c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
#include <skalibs/bytestr.h>
#include <skalibs/stralloc.h>
int stralloc_catb (stralloc *sa, char const *s, unsigned int n)
{
if (!stralloc_readyplus(sa, n)) return 0 ;
byte_copy(sa->s + sa->len, n, s) ;
sa->len += n ;
return 1 ;
}
|