blob: c59e2bbae2e278e9d02445605ade57e9f36e6838 (
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 Mahrouss Logic
File: String.cxx
Purpose: NewBoot string library
Revision History:
------------------------------------------- */
#include <BootKit/BootKit.hxx>
#include <EFIKit/Api.hxx>
/// bugs 0
/////////////////////////////////////////////////////////////////////////////////////////////////////////
HCore::SizeT BCopyMem(CharacterType *dest, CharacterType *src,
const HCore::SizeT len) {
if (!dest || !src) return 0;
SizeT index = 0UL;
for (; index < len; ++index) {
dest[index] = src[index];
}
return index;
}
HCore::SizeT BStrLen(const CharacterType *ptr) {
if (!ptr) return 0;
HCore::SizeT cnt = 0;
while (*ptr != (CharacterType)0) {
++ptr;
++cnt;
}
return cnt;
}
HCore::SizeT BSetMem(CharacterType *src, const CharacterType byte,
const HCore::SizeT len) {
if (!src) return 0;
HCore::SizeT cnt = 0UL;
while (*src != 0) {
if (cnt > len) break;
*src = byte;
++src;
++cnt;
}
return cnt;
}
|