mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 18:12:29 +00:00
18 lines
334 B
C++
18 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
|