mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-05-06 07:13:51 +00:00
feat(string): add SStrDestroy
This commit is contained in:
parent
50872dfc14
commit
1e1f2f819f
3 changed files with 28 additions and 20 deletions
|
|
@ -364,6 +364,10 @@ size_t STORMAPI SStrCopy(char* dest, const char* source, size_t destsize) {
|
|||
return static_cast<size_t>(destbuf - dest);
|
||||
}
|
||||
|
||||
void STORMAPI SStrDestroy() {
|
||||
// nothing to do
|
||||
}
|
||||
|
||||
char* STORMAPI SStrDupA(const char* string, const char* filename, uint32_t linenumber) {
|
||||
STORM_VALIDATE_BEGIN;
|
||||
STORM_VALIDATE(string);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue