aboutsummaryrefslogtreecommitdiff
path: root/lib/unicode/string/u8wnext_human.c
blob: 953d942bd27d2c30d2782d0cdb409517648b1d93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "macros.h"
#include "mbstring.h"
#include "unicode/prop.h"
#include "unicode/string.h"

size_t
u8wnext_human(struct u8view *dst, struct u8view *sv)
{
	ASSUME(sv != nullptr);
	ASSUME(sv->p != nullptr);

	struct u8view w;
	while (u8wnext(&w, sv)) {
		rune ch;
		struct u8view cpy = w;
		while (u8next(&ch, &cpy)) {
			if (uprop_get_gc(ch) & (GC_L | GC_N)) {
				if (dst != nullptr)
					*dst = w;
				return w.len;
			}
		}
	}

	return 0;
}