blob: 1844a657293ec01a98bd31348f70dbc509ffa914 (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#include <OpenSslSupport.h>
CHAR8 *
AsciiStrCat(CHAR8 *Destination, CHAR8 *Source)
{
UINTN dest_len = strlena(Destination);
UINTN i;
for (i = 0; Source[i] != '\0'; i++)
Destination[dest_len + i] = Source[i];
Destination[dest_len + i] = '\0';
return Destination;
}
CHAR8 *
AsciiStrCpy(CHAR8 *Destination, CHAR8 *Source)
{
UINTN i;
for (i=0; Source[i] != '\0'; i++)
Destination[i] = Source[i];
Destination[i] = '\0';
return Destination;
}
CHAR8 *
AsciiStrnCpy(CHAR8 *Destination, CHAR8 *Source, UINTN count)
{
UINTN i;
for (i=0; i < count && Source[i] != '\0'; i++)
Destination[i] = Source[i];
for ( ; i < count; i++)
Destination[i] = '\0';
return Destination;
}
CHAR8 *
ScanMem8(CHAR8 *str, UINTN count, CHAR8 ch)
{
UINTN i;
for (i = 0; i < count; i++) {
if (str[i] == ch)
return str + i;
}
return NULL;
}
UINT32
WriteUnaligned32(UINT32 *Buffer, UINT32 Value)
{
*Buffer = Value;
return Value;
}
UINTN
AsciiStrSize(CHAR8 *string)
{
return strlena(string) + 1;
}
int
strcmp (const char *str1, const char *str2)
{
return strcmpa((CHAR8 *)str1,(CHAR8 *)str2);
}
inline static char
toupper (char c)
{
return ((c >= 'a' && c <= 'z') ? c - ('a' - 'A') : c);
}
/* Based on AsciiStriCmp() in edk2 MdePkg/Library/BaseLib/String.c */
int
strcasecmp (const char *str1, const char *str2)
{
char c1, c2;
c1 = toupper (*str1);
c2 = toupper (*str2);
while ((*str1 != '\0') && (c1 == c2)) {
str1++;
str2++;
c1 = toupper (*str1);
c2 = toupper (*str2);
}
return c1 - c2;
}
|