aboutsummaryrefslogtreecommitdiff
path: root/lib/bob/u8strpushu8.c
blob: 8358e017e3bef180247081b7170f4152e789672c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <string.h>

#include "bob.h"
#include "mbstring.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;
}