summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/src/WideUtils.cc
blob: a935c2d4ba2e2cffab550821f72d4c09153fa901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -------------------------------------------

	Copyright (C) 2025, Amlal El Mahrouss, all rights reserved.

------------------------------------------- */

#include <NewKit/Utils.h>

namespace Kernel
{
	Size wrt_string_len(const Utf16Char* str)
	{
		SizeT len{0};

		while (str[len] != 0)
			++len;

		return len;
	}
} // namespace Kernel