summaryrefslogtreecommitdiffstats
path: root/src/hash.h
blob: 03825ae951fcb7636ff6e48be2d6f90bbb5d10ad (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, const char *type);

#endif