blob: 0bcf9fc0a484ba3ceb10f89b0badc616a0eb18b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
#include <string.h>
#include "builder.h"
#include "utf8.h"
#include "internal/common.h"
struct u8buf *
u8strpushu8(struct u8buf *b, struct u8view v)
{
	if (!u8strgrow(b, b->len + v.len))
		return nullptr;
	memcpy(b->p + b->len, v.p, v.len);
	b->len += v.len;
	return b;
}
 
  |