xref: /haiku/src/bin/unzip/zip.h (revision 7749d0bb0c358a3279b1b9cc76d8376e900130a5)
1 /*
2   Copyright (c) 1990-2001 Info-ZIP.  All rights reserved.
3 
4   See the accompanying file LICENSE, version 2000-Apr-09 or later
5   (the contents of which are also included in unzip.h) for terms of use.
6   If, for some reason, all these files are missing, the Info-ZIP license
7   also may be found at:  ftp://ftp.info-zip.org/pub/infozip/license.html
8 */
9 /* This is a dummy zip.h to allow the source files shared with Zip (crypt.c,
10    crc32.c, crctab.c, ttyio.c) to compile for UnZip.  (In case you are looking
11    for the Info-ZIP license, please follow the pointers above.)  */
12 
13 #ifndef __zip_h   /* don't include more than once */
14 #define __zip_h
15 
16 #define UNZIP_INTERNAL
17 #include "unzip.h"
18 
19 #define local static
20 
21 #define ZE_MEM         PK_MEM
22 #define ziperr(c, h)   return
23 
24 #endif /* !__zip_h */
25