]>
Commit | Line | Data |
---|---|---|
f6bcfd97 BP |
1 | /* |
2 | crypt.h (dummy version) by Info-ZIP. Last revised: 15 Aug 98 | |
3 | ||
4 | This is a non-functional version of Info-ZIP's crypt.h encryption/ | |
5 | decryption header file for Zip, ZipCloak, UnZip and fUnZip. This | |
6 | file is not copyrighted and may be distributed without restriction. | |
7 | See the "WHERE" file for sites from which to obtain the full crypt | |
8 | sources (zcrypt28.zip or later). | |
9 | */ | |
10 | ||
11 | #ifndef __crypt_h /* don't include more than once */ | |
12 | #define __crypt_h | |
13 | ||
14 | #ifdef CRYPT | |
15 | # undef CRYPT | |
16 | #endif | |
17 | #define CRYPT 0 /* dummy version */ | |
18 | ||
19 | #define zencode | |
20 | #define zdecode | |
21 | ||
22 | #define zfwrite fwrite | |
23 | ||
24 | #endif /* !__crypt_h */ |