mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
8 lines
161 B
C
Executable File
8 lines
161 B
C
Executable File
#ifndef __HASH_STRING_H
|
|
#define __HASH_STRING_H
|
|
|
|
unsigned long hash_string(unsigned char *str);
|
|
int cmp_string(char* a, char* b);
|
|
|
|
#endif /* __HASH_STRING_H */
|