aboutsummaryrefslogtreecommitdiff
path: root/lib/unicode/string/u8wcnt_human.c
blob: 6e703986a5a9978908c27809905a676aa0784783 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "unicode/string.h"

size_t
u8wcnt_human(const char8_t *s, size_t n)
{
	size_t m = 0;
	while (u8wnext_human(nullptr, &s, &n))
		m++;
	return m;
}