blob: 99e4453170181fae0df83998f64c649eecf2e831 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* -------------------------------------------
Copyright (C) 2024, Amlal EL Mahrouss, all rights reserved.
------------------------------------------- */
#include <BootKit/BootKit.h>
#include <FirmwareKit/EFI/API.h>
#include <FirmwareKit/EFI/EFI.h>
#include <FirmwareKit/Handover.h>
#include <BootKit/Support.h>
#include <KernelKit/MSDOS.h>
#include <KernelKit/PE.h>
#ifdef __BOOTLDR_STANDALONE__
/// @brief memset definition in C++.
/// @param dst destination pointer.
/// @param byte value to fill in.
/// @param len length of of src.
EXTERN_C VoidPtr memset(void* dst, int byte, long long unsigned int len)
{
for (size_t i = 0UL; i < len; ++i)
{
((int*)dst)[i] = byte;
}
return dst;
}
/// @brief memcpy definition in C++.
/// @param dst destination pointer.
/// @param src source pointer.
/// @param len length of of src.
EXTERN_C VoidPtr memcpy(void* dst, const void* src, long long unsigned int len)
{
for (size_t i = 0UL; i < len; ++i)
{
((int*)dst)[i] = ((int*)src)[i];
}
return dst;
}
/// @brief strlen definition in C++.
EXTERN_C size_t strlen(const char* whatToCheck)
{
SizeT len = 0;
while (whatToCheck[len] != 0)
{
++len;
}
return len;
}
/// @brief strcmp definition in C++.
EXTERN_C int strcmp(const char* whatToCheck, const char* whatToCheckRight)
{
if (!whatToCheck || *whatToCheck == 0)
return 0;
SizeT len = 0;
while (whatToCheck[len] == whatToCheckRight[len])
{
if (whatToCheck[len] == 0)
return 0;
++len;
}
return len;
}
/// @brief something specific to the Microsoft's ABI, When the stack grows too big.
EXTERN_C void ___chkstk_ms(void)
{
}
#endif
|