squall/storm/String.hpp
2020-11-14 17:20:39 -06:00

11 lines
206 B
C++

#ifndef STORM_STRING_HPP
#define STORM_STRING_HPP
#include <cstdint>
#include <cstdlib>
size_t SStrCopy(char* dest, const char* source, size_t destsize);
uint32_t SStrHashHT(const char* string);
#endif