blob: 708e47dab46b31b450f8244c43c82a8bac16b2c1 (
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
|
#include "util.hpp"
namespace util
{
auto str_ends_with(const char *target, size_t target_end, const char *other) noexcept
-> bool
{
if (target == nullptr || other == nullptr)
{
return false;
}
const auto other_str_length = strlen(other);
if (other_str_length > target_end)
{
return false;
}
return strncmp(target + target_end - other_str_length, other, other_str_length) == 0;
}
void substr(const char *str, const char *end, char *dest) noexcept
{
auto *dest_head = dest;
for (const char *char_ptr = str; char_ptr != end; ++char_ptr)
{
*dest_head = *char_ptr;
dest_head++;
}
}
auto streq(const char *str_one, const char *str_two) noexcept -> bool
{
return strcmp(str_one, str_two) == 0;
}
void quit() noexcept
{
while (true)
;
}
} // namespace util
|