squall/storm/String.hpp
2020-09-08 21:37:30 -05:00

8 lines
145 B
C++

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