blob: 2ef2563b733b028dc6601d58b7c41bb0bdd1d23e (
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 "mbstring.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;
}
|