aboutsummaryrefslogtreecommitdiff
path: root/vendor/librune/lib/builder/u8strpushu8.c
blob: dc6db11a4901c0f6e9f6f62a4c4dc8716c33824b (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 u8str *
u8strpushu8(struct u8str *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;
}