mirror of
https://github.com/reactos/ccache.git
synced 2024-12-12 13:45:48 +00:00
8 lines
132 B
C
8 lines
132 B
C
|
#ifndef HASHUTIL_H
|
||
|
#define HASHUTIL_H
|
||
|
|
||
|
unsigned int hash_from_string(void *str);
|
||
|
int strings_equal(void *str1, void *str2);
|
||
|
|
||
|
#endif
|