mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
593ee623b6
additional: * exporting include path in sys is mandatory for subfolders * removed duplicate object file in linker call
8 lines
160 B
C
8 lines
160 B
C
#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 */
|