FOSSology  4.4.0
Open Source License Compliance by Open Source Software
hash.h
1 /*
2  Author: Daniele Fognini, Andreas Wuerl
3  SPDX-FileCopyrightText: © 2013-2014 Siemens AG
4 
5  SPDX-License-Identifier: GPL-2.0-only
6 */
7 
8 #ifndef MONK_AGENT_HASH_H
9 #define MONK_AGENT_HASH_H
10 
11 #include <stdint.h>
12 
13 uint32_t hash(const char* string);
14 
15 uint32_t hash_init();
16 
17 void hash_add(const char* value, uint32_t* currentHash);
18 
19 #endif // MONK_AGENT_HASH_H