feat(string): add SStrHashHT

This commit is contained in:
fallenoak 2020-11-14 17:18:49 -06:00
parent f631bdac3b
commit abb9e8ed79
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
6 changed files with 277 additions and 0 deletions

View file

@ -1,8 +1,11 @@
#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