squall/storm/String.hpp

15 lines
267 B
C++
Raw Normal View History

2020-09-08 21:37:30 -05:00
#ifndef STORM_STRING_HPP
#define STORM_STRING_HPP
2020-11-14 17:18:49 -06:00
#include <cstdint>
2020-09-08 21:37:30 -05:00
#include <cstdlib>
#define STORM_MAX_PATH 260
#define STORM_MAX_STR 0x7FFFFFFF
2020-09-08 21:37:30 -05:00
size_t SStrCopy(char* dest, const char* source, size_t destsize);
2020-11-14 17:18:49 -06:00
uint32_t SStrHashHT(const char* string);
2020-09-08 21:37:30 -05:00
#endif