feat(string): add SStrCopy

This commit is contained in:
fallenoak 2020-09-08 21:37:30 -05:00
parent 0861ddf3ba
commit 4e9f05c178
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 43 additions and 0 deletions

8
storm/String.hpp Normal file
View file

@ -0,0 +1,8 @@
#ifndef STORM_STRING_HPP
#define STORM_STRING_HPP
#include <cstdlib>
size_t SStrCopy(char* dest, const char* source, size_t destsize);
#endif