9 lines
137 B
C
9 lines
137 B
C
|
#ifndef HASH_H
|
||
|
#define HASH_H
|
||
|
|
||
|
void hash_update_s(unsigned long *, char *);
|
||
|
void hash_update_n(unsigned long *, unsigned long);
|
||
|
|
||
|
|
||
|
#endif
|