summaryrefslogtreecommitdiffstats
path: root/src/hash.h
blob: b7de788e7467e17c20736a5862718607c80ed909 (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(char *filename);

#endif