diff options
| author | amelia squires <[email protected]> | 2025-04-21 20:43:51 -0500 |
|---|---|---|
| committer | amelia squires <[email protected]> | 2025-04-21 20:43:51 -0500 |
| commit | af975d63f67e6cc2d17f1804acb66328905f8701 (patch) | |
| tree | ab23744e784044d29cc73cd1da4070011e7e858c /src/hash/jenkins.c | |
| parent | b2ee662b4621282b137a2a2cf1be13bd60073c5a (diff) | |
better version support, fixes, and memory saftey
Diffstat (limited to 'src/hash/jenkins.c')
| -rw-r--r-- | src/hash/jenkins.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hash/jenkins.c b/src/hash/jenkins.c index 8a417c6..ede202f 100644 --- a/src/hash/jenkins.c +++ b/src/hash/jenkins.c @@ -6,6 +6,10 @@ struct jenkins_oaat_hash jenkins_oaat_init(){ return (struct jenkins_oaat_hash){.hash = 0};
}
+int jenkins_oaat_free_l(lua_State* L){
+ return 0;
+}
+
void jenkins_oaat_update(uint8_t* in, size_t len, struct jenkins_oaat_hash* hash){
for(int i = 0; i != len;){
hash->hash += in[i++];
|
