blob: 363d5d43664f19d7508668768e105eb2467d25fd (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _INCLUDE_HASH_H_
#define _INCLUDE_HASH_H_
#define usho unsigned short
#define BSIZE 0x20000
usho do_hash(usho *b, int len);
usho do_hash_file(const char *filename);
#endif
|