summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/src/UtfUtils.cc
blob: df634735bbd03f556a97a55514108c114d44ce76 (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* -------------------------------------------

  Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.

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

#include <NeKit/Utils.h>

/// @author Amlal El Mahrouss (amlal@nekernel.org)

namespace Kernel {
Size urt_string_len(const Utf8Char* str) {
  if (!str) return 0;

  SizeT len{0};

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

  return len;
}

Void urt_set_memory(const voidPtr src, UInt32 dst, Size len) {
  if (!src) return;

  Utf8Char* srcChr = reinterpret_cast<Utf8Char*>(src);
  Size      index  = 0;

  while (index < len) {
    srcChr[index] = dst;
    ++index;
  }
}

Int32 urt_string_cmp(const Utf8Char* src, const Utf8Char* cmp, Size size) {
  if (!src) return 0;

  Int32 counter = 0;

  for (Size index = 0; index < size; ++index) {
    if (src[index] != cmp[index]) ++counter;
  }

  return counter;
}

Int32 urt_copy_memory(const VoidPtr src, VoidPtr dst, Size len) {
  if (!src) return 0;
  if (!dst) return 0;

  Utf8Char* srcChr  = reinterpret_cast<Utf8Char*>(src);
  Utf8Char* dstChar = reinterpret_cast<Utf8Char*>(dst);

  Size index = 0;

  while (index < len) {
    dstChar[index] = srcChr[index];
    ++index;
  }

  return index;
}
}  // namespace Kernel