mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
8 lines
145 B
C++
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
|