diff options
author | pancake <pancake@dazo> | 2007-04-20 18:20:22 +0200 |
---|---|---|
committer | pancake <pancake@dazo> | 2007-04-20 18:20:22 +0200 |
commit | b1d0ce2848a79664374f802954b1e4390b11da6d (patch) | |
tree | 4f465ca029401b9afef0372ff1e0c60a43d87b40 /src/hash.h | |
download | 0xFFFF-0.1.tar.bz2 |
* Initial commit of 0xFFFF.0.1
This tree contains the same as the 0.1 tarball
Diffstat (limited to 'src/hash.h')
-rw-r--r-- | src/hash.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/hash.h b/src/hash.h new file mode 100644 index 0000000..b7de788 --- /dev/null +++ b/src/hash.h @@ -0,0 +1,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 |