mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-13 10:22:30 +00:00
19 lines
334 B
C++
19 lines
334 B
C++
|
|
#ifndef BC_STRING_HPP
|
||
|
|
#define BC_STRING_HPP
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
#include <cstdlib>
|
||
|
|
|
||
|
|
namespace Blizzard {
|
||
|
|
namespace String {
|
||
|
|
|
||
|
|
// Functions
|
||
|
|
int32_t Copy(char* dst, const char* src, size_t len);
|
||
|
|
uint32_t Length(const char* str);
|
||
|
|
void MemFill(void* dst, uint32_t len, uint8_t fill);
|
||
|
|
|
||
|
|
} // namespace String
|
||
|
|
} // namespace Blizzard
|
||
|
|
|
||
|
|
#endif
|