mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 01:52:30 +00:00
16 lines
275 B
C++
16 lines
275 B
C++
#ifndef BC_STRING_EQUAL_HPP
|
|
#define BC_STRING_EQUAL_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Blizzard {
|
|
namespace String {
|
|
|
|
bool Equal(const char* a, const char* b);
|
|
|
|
bool EqualI(const char* a, const char* b, uint32_t count);
|
|
|
|
} // namespace String
|
|
} // namespace Blizzard
|
|
|
|
#endif
|