unzpriv.h
上传用户:andy_li
上传日期:2007-01-06
资源大小:1019k
文件大小:83k
源码类别:

压缩解压

开发平台:

MultiPlatform

  1. /*---------------------------------------------------------------------------
  2.   unzpriv.h
  3.   This header file contains private (internal) macros, typedefs, prototypes
  4.   and global-variable declarations used by all of the UnZip source files.
  5.   In a prior life it was part of the main unzip.h header, but now it is only
  6.   included by that header if UNZIP_INTERNAL is defined.
  7.   ---------------------------------------------------------------------------*/
  8. #ifndef __unzpriv_h   /* prevent multiple inclusions */
  9. #define __unzpriv_h
  10. /* First thing: Signal all following code that we compile UnZip utilities! */
  11. #ifndef UNZIP
  12. #  define UNZIP
  13. #endif
  14. /* GRR 960204:  MORE defined here in preparation for removal altogether */
  15. #ifndef MORE
  16. #  define MORE
  17. #endif
  18. /* fUnZip should never need to be reentrant */
  19. #ifdef FUNZIP
  20. #  ifdef REENTRANT
  21. #    undef REENTRANT
  22. #  endif
  23. #  ifdef DLL
  24. #    undef DLL
  25. #  endif
  26. #endif
  27. #if (defined(DLL) && !defined(REENTRANT))
  28. #  define REENTRANT
  29. #endif
  30. #if (!defined(DYNAMIC_CRC_TABLE) && !defined(FUNZIP))
  31. #  define DYNAMIC_CRC_TABLE
  32. #endif
  33. #if (defined(DYNAMIC_CRC_TABLE) && !defined(REENTRANT))
  34. #  ifndef DYNALLOC_CRCTAB
  35. #    define DYNALLOC_CRCTAB
  36. #  endif
  37. #endif
  38. /*---------------------------------------------------------------------------
  39.     OS-dependent configuration for UnZip internals
  40.   ---------------------------------------------------------------------------*/
  41. /* bad or (occasionally?) missing stddef.h: */
  42. #if (defined(M_XENIX) || defined(DNIX))
  43. #  define NO_STDDEF_H
  44. #endif
  45. #if (defined(M_XENIX) && !defined(M_UNIX))   /* SCO Xenix only, not SCO Unix */
  46. #  define SCO_XENIX
  47. #  define NO_LIMITS_H        /* no limits.h, but MODERN defined */
  48. #  define NO_UID_GID         /* no uid_t/gid_t */
  49. #  define size_t int
  50. #endif
  51. #ifdef realix   /* Modcomp Real/IX, real-time SysV.3 variant */
  52. #  define SYSV
  53. #  define NO_UID_GID         /* no uid_t/gid_t */
  54. #endif
  55. #if (defined(_AIX) && !defined(_ALL_SOURCE))
  56. #  define _ALL_SOURCE
  57. #endif
  58. #if defined(apollo)          /* defines __STDC__ */
  59. #    define NO_STDLIB_H
  60. #endif
  61. #ifdef DNIX
  62. #  define SYSV
  63. #  define SHORT_NAMES         /* 14-char limitation on path components */
  64. /* #  define FILENAME_MAX  14 */
  65. #  define FILENAME_MAX  NAME_MAX    /* GRR:  experiment */
  66. #endif
  67. #if (defined(SYSTEM_FIVE) || defined(__SYSTEM_FIVE))
  68. #  ifndef SYSV
  69. #    define SYSV
  70. #  endif
  71. #endif /* SYSTEM_FIVE || __SYSTEM_FIVE */
  72. #if (defined(M_SYSV) || defined(M_SYS5))
  73. #  ifndef SYSV
  74. #    define SYSV
  75. #  endif
  76. #endif /* M_SYSV || M_SYS5 */
  77. /* __SVR4 and __svr4__ catch Solaris on at least some combos of compiler+OS */
  78. #if (defined(__SVR4) || defined(__svr4__) || defined(sgi) || defined(__hpux))
  79. #  ifndef SYSV
  80. #    define SYSV
  81. #  endif
  82. #endif /* __SVR4 || __svr4__ || sgi || __hpux */
  83. #if (defined(LINUX) || defined(__QNX__))
  84. #  ifndef SYSV
  85. #    define SYSV
  86. #  endif
  87. #endif /* LINUX || __QNX__ */
  88. #if (defined(ultrix) || defined(__ultrix) || defined(bsd4_2))
  89. #  if (!defined(BSD) && !defined(SYSV))
  90. #    define BSD
  91. #  endif
  92. #endif /* ultrix || __ultrix || bsd4_2 */
  93. #if (defined(sun) || defined(pyr) || defined(CONVEX))
  94. #  if (!defined(BSD) && !defined(SYSV))
  95. #    define BSD
  96. #  endif
  97. #endif /* sun || pyr || CONVEX */
  98. #ifdef pyr  /* Pyramid:  has BSD and AT&T "universes" */
  99. #  ifdef BSD
  100. #    define pyr_bsd
  101. #    define USE_STRINGS_H  /* instead of more common string.h */
  102. #    define ZMEM           /* ZMEM now uses bcopy/bzero: not in AT&T universe */
  103. #  endif                   /* (AT&T memcpy claimed to be very slow, though) */
  104. #  define DECLARE_ERRNO
  105. #endif /* pyr */
  106. /* stat() bug for Borland, VAX C (also GNU?), and Atari ST MiNT on TOS
  107.  * filesystems:  returns 0 for wildcards!  (returns 0xffffffff on Minix
  108.  * filesystem or `U:' drive under Atari MiNT.)  Watcom C was previously
  109.  * included on this list; it would be good to know what version the problem
  110.  * was fixed at, if it did exist.  Watcom 10.6 has a separate stat() problem:
  111.  * it fails on "." when the current directory is a root.  This is covered by
  112.  * giving it a separate definition of SSTAT in OS-specific header files. */
  113. #if (defined(__TURBOC__) || defined(VMS) || defined(__MINT__))
  114. #  define WILD_STAT_BUG
  115. #endif
  116. #ifdef WILD_STAT_BUG
  117. #  define SSTAT(path,pbuf) (iswild(path) || stat(path,pbuf))
  118. #else
  119. #  define SSTAT stat
  120. #endif
  121. #ifdef REGULUS  /* returns the inode number on success(!)...argh argh argh */
  122. #  define stat(p,s) zstat((p),(s))
  123. #endif
  124. #define STRNICMP zstrnicmp
  125. /*---------------------------------------------------------------------------
  126.     OS-dependent includes
  127.   ---------------------------------------------------------------------------*/
  128. #ifdef EFT
  129. #  define LONGINT off_t  /* Amdahl UTS nonsense ("extended file types") */
  130. #else
  131. #  define LONGINT long
  132. #endif
  133. #ifdef MODERN
  134. #  ifndef NO_STDDEF_H
  135. #    include <stddef.h>
  136. #  endif
  137. #  ifndef NO_STDLIB_H
  138. #    include <stdlib.h>  /* standard library prototypes, malloc(), etc. */
  139. #  endif
  140.    typedef size_t extent;
  141. #else /* !MODERN */
  142. #  ifndef AOS_VS         /* mostly modern? */
  143.      LONGINT lseek();
  144. #    ifdef VAXC          /* not fully modern, but does have stdlib.h and void */
  145. #      include <stdlib.h>
  146. #    else
  147.        char *malloc();
  148. #    endif /* ?VAXC */
  149. #  endif /* !AOS_VS */
  150.    typedef unsigned int extent;
  151. #endif /* ?MODERN */
  152. #ifndef MINIX            /* Minix needs it after all the other includes (?) */
  153. #  include <stdio.h>
  154. #endif
  155. #include <ctype.h>       /* skip for VMS, to use tolower() function? */
  156. #include <errno.h>       /* used in mapname() */
  157. #ifdef USE_STRINGS_H
  158. #  include <strings.h>   /* strcpy, strcmp, memcpy, index/rindex, etc. */
  159. #else
  160. #  include <string.h>    /* strcpy, strcmp, memcpy, strchr/strrchr, etc. */
  161. #endif
  162. #if (defined(MODERN) && !defined(NO_LIMITS_H))
  163. #  include <limits.h>    /* GRR:  EXPERIMENTAL!  (can be deleted) */
  164. #endif
  165. /* this include must be down here for SysV.4, for some reason... */
  166. #include <signal.h>      /* used in unzip.c, fileio.c */
  167. /*---------------------------------------------------------------------------
  168.     API (DLL) section:
  169.   ---------------------------------------------------------------------------*/
  170. #ifdef DLL
  171. #  define MAIN   UZ_EXP UzpMain   /* was UzpUnzip */
  172. #  ifdef OS2DLL
  173. #    undef Info
  174. #    define REDIRECTC(c)             varputchar(__G__ c)
  175. #    define REDIRECTPRINT(buf,size)  varmessage(__G__ buf, size)
  176. #    define FINISH_REDIRECT()        finish_REXX_redirect(__G)
  177. #  else
  178. #    define REDIRECTC(c)
  179. #    define REDIRECTPRINT(buf,size)  0
  180. #    define FINISH_REDIRECT()        close_redirect(__G)
  181. #  endif
  182. #endif
  183. /*---------------------------------------------------------------------------
  184.     Acorn RISCOS section:
  185.   ---------------------------------------------------------------------------*/
  186. #ifdef RISCOS
  187. #  include "acorn/riscos.h"
  188. #endif
  189. /*---------------------------------------------------------------------------
  190.     Amiga section:
  191.   ---------------------------------------------------------------------------*/
  192. #ifdef AMIGA
  193. #  include "amiga/amiga.h"
  194. #endif
  195. /*---------------------------------------------------------------------------
  196.     AOS/VS section (somewhat similar to Unix, apparently):
  197.   ---------------------------------------------------------------------------*/
  198. #ifdef AOS_VS
  199. #  ifdef FILEIO_C
  200. #    include "aosvs/aosvs.h"
  201. #  endif
  202. #endif
  203. /*---------------------------------------------------------------------------
  204.     Atari ST section:
  205.   ---------------------------------------------------------------------------*/
  206. #ifdef ATARI
  207. #  include <time.h>
  208. #  include <stat.h>
  209. #  include <fcntl.h>
  210. #  include <limits.h>
  211. #  define SYMLINKS
  212. #  define EXE_EXTENSION  ".tos"
  213. #  ifndef DATE_FORMAT
  214. #    define DATE_FORMAT  DF_DMY
  215. #  endif
  216. #  define DIR_END        '/'
  217. #  define INT_SPRINTF
  218. #  define timezone      _timezone
  219. #  define lenEOL        2
  220. #  define PutNativeEOL  {*q++ = native(CR); *q++ = native(LF);}
  221. #  undef SHORT_NAMES
  222. #  if (!defined(NOTIMESTAMP) && !defined(TIMESTAMP))
  223. #    define TIMESTAMP
  224. #  endif
  225. #endif
  226. /*---------------------------------------------------------------------------
  227.     BeOS section:
  228.   ---------------------------------------------------------------------------*/
  229. #ifdef __BEOS__
  230. #  include <sys/types.h>          /* [cjh]:  This is pretty much a generic  */
  231. #  include <sys/stat.h>           /* POSIX 1003.1 system; see beos/ for     */
  232. #  include <fcntl.h>              /* extra code to deal with our extra file */
  233. #  include <sys/param.h>          /* attributes. */
  234. #  include <unistd.h>
  235. #  include <utime.h>
  236. #  define DIRENT
  237. #  include <time.h>
  238. #  ifndef DATE_FORMAT
  239. #    define DATE_FORMAT DF_MDY  /* GRR:  customize with locale.h somehow? */
  240. #  endif
  241. #  define lenEOL        1
  242. #  define PutNativeEOL  *q++ = native(LF);
  243. #  define SCREENLINES   screenlines()
  244. #  define USE_EF_UT_TIME
  245. #  define SET_DIR_ATTRIB
  246. #  if (!defined(NOTIMESTAMP) && !defined(TIMESTAMP))
  247. #    define TIMESTAMP
  248. #  endif
  249. #  define RESTORE_UIDGID
  250. #  define NO_GMTIME               /* maybe DR10 will have timezones... */
  251. #  define INT_SPRINTF
  252. #  define SYMLINKS
  253. #  define MAIN main_stub          /* now that we're using a wrapper... */
  254. #endif
  255. /*---------------------------------------------------------------------------
  256.     Human68k/X68000 section:
  257.   ---------------------------------------------------------------------------*/
  258. #ifdef __human68k__    /* DO NOT DEFINE DOS_OS2 HERE!  If Human68k is so much */
  259. #  include <time.h>    /*  like MS-DOS and/or OS/2, create DOS_H68_OS2 macro. */
  260. #  include <fcntl.h>
  261. #  include <io.h>
  262. #  include <conio.h>
  263. #  include <jctype.h>
  264. #  include <sys/stat.h>
  265. #  ifndef DATE_FORMAT
  266. #    define DATE_FORMAT DF_YMD   /* Japanese standard */
  267. #  endif
  268.       /* GRR:  these EOL macros are guesses */
  269. #  define lenEOL        2
  270. #  define PutNativeEOL  {*q++ = native(CR); *q++ = native(LF);}
  271. #  define EXE_EXTENSION ".exe"   /* just a guess... */
  272. #endif
  273. /*---------------------------------------------------------------------------
  274.     Mac section:
  275.   ---------------------------------------------------------------------------*/
  276. #ifdef MACOS
  277. #  include "maccfg.h"
  278. #endif /* MACOS */
  279. /*---------------------------------------------------------------------------
  280.     MS-DOS, OS/2, FLEXOS section:
  281.   ---------------------------------------------------------------------------*/
  282. #ifdef WINDLL
  283. #  define MSWIN
  284. #  ifdef MORE
  285. #    undef MORE
  286. #  endif
  287. #  ifdef OS2_EAS
  288. #    undef OS2_EAS
  289. #  endif
  290. #endif
  291. #if (defined(_MSC_VER) || (defined(M_I86) && !defined(__WATCOMC__)))
  292. #  ifndef MSC
  293. #    define MSC               /* This should work for older MSC, too!  */
  294. #  endif
  295. #endif
  296. #if (defined(MSDOS) || defined(OS2) || defined(FLEXOS))
  297. #  include <sys/types.h>      /* off_t, time_t, dev_t, ... */
  298. #  include <sys/stat.h>
  299. #  include <io.h>             /* lseek(), open(), setftime(), dup(), creat() */
  300. #  include <time.h>           /* localtime() */
  301. #  include <fcntl.h>          /* O_BINARY for open() w/o CR/LF translation */
  302. #  ifdef OS2                  /* defined for all OS/2 compilers */
  303. #    include "os2/os2cfg.h"
  304. #  else
  305. #    ifdef FLEXOS
  306. #      include "flexos/flxcfg.h"
  307. #    else
  308. #      include "msdos/doscfg.h"
  309. #    endif
  310. #  endif
  311. #  if (defined(_MSC_VER) && (_MSC_VER == 700) && !defined(GRR))
  312.     /*
  313.      * ARGH.  MSC 7.0 libraries think times are based on 1899 Dec 31 00:00, not
  314.      *  1970 Jan 1 00:00.  So we have to diddle time_t's appropriately:  add or
  315.      *  subtract 70 years' worth of seconds; i.e., number of days times 86400;
  316.      *  i.e., (70*365 regular days + 17 leap days + 1 1899 day) * 86400 ==
  317.      *  (25550 + 17 + 1) * 86400 == 2209075200 seconds.  We know time_t is an
  318.      *  unsigned long (ulg) on the only system with this bug.
  319.      */
  320. #    define TIMET_TO_NATIVE(x)  (x) += (ulg)2209075200L;
  321. #    define NATIVE_TO_TIMET(x)  (x) -= (ulg)2209075200L;
  322. #  endif
  323. #  if (defined(__BORLANDC__) && (__BORLANDC__ >= 0x0450))
  324. #    define timezone      _timezone
  325. #  endif
  326. #  if (defined(__GO32__) || defined(FLEXOS))
  327. #    define DIR_END       '/'
  328. #  else
  329. #    define DIR_END       '\'  /* OS uses '\' as directory separator */
  330. #    define DIR_END2      '/'   /* also check for '/' (RTL may convert) */
  331. #  endif
  332. #  ifndef WIN32
  333. #    ifdef DATE_FORMAT
  334. #      undef DATE_FORMAT
  335. #    endif
  336. #    define DATE_FORMAT   dateformat()
  337. #  endif
  338. #  define lenEOL          2
  339. #  define PutNativeEOL    {*q++ = native(CR); *q++ = native(LF);}
  340. #  define USE_EF_UT_TIME
  341. #endif /* MSDOS || OS2 || FLEXOS */
  342. /*---------------------------------------------------------------------------
  343.     MTS section (piggybacks UNIX, I think):
  344.   ---------------------------------------------------------------------------*/
  345. #ifdef MTS
  346. #  include <sys/types.h>      /* off_t, time_t, dev_t, ... */
  347. #  include <sys/stat.h>
  348. #  include <sys/file.h>       /* MTS uses this instead of fcntl.h */
  349. #  include <timeb.h>
  350. #  include <time.h>
  351. #  include <unix.h>           /* some important non-ANSI routines */
  352. #  define mkdir(s,n) (-1)     /* no "make directory" capability */
  353. #  define EBCDIC              /* set EBCDIC conversion on */
  354. #  define NO_STRNICMP         /* unzip's is as good the one in MTS */
  355. #  define USE_FWRITE
  356. #  define close_outfile()  fclose(G.outfile)   /* can't set time on files */
  357. #  define umask(n)            /* don't have umask() on MTS */
  358. #  define FOPWT         "w"   /* open file for writing in TEXT mode */
  359. #  ifndef DATE_FORMAT
  360. #    define DATE_FORMAT DF_MDY
  361. #  endif
  362. #  define lenEOL        1
  363. #  define PutNativeEOL  *q++ = native(LF);
  364. #endif /* MTS */
  365.  /*---------------------------------------------------------------------------
  366.     QDOS section
  367.   ---------------------------------------------------------------------------*/
  368. #ifdef QDOS
  369. #  define DIRENT
  370. #  include <fcntl.h>
  371. #  include <unistd.h>
  372. #  include <sys/stat.h>
  373. #  include <time.h>
  374. #  include "qdos/izqdos.h"
  375. #  ifndef DATE_FORMAT
  376. #    define DATE_FORMAT DF_MDY
  377. #  endif
  378. #  define lenEOL        1
  379. #  define PutNativeEOL  *q++ = native(LF);
  380. #  define DIR_END       '_'
  381. #  define RETURN        QReturn
  382. #  undef PATH_MAX
  383. #  define PATH_MAX      36
  384. #  if (!defined(NOTIMESTAMP) && !defined(TIMESTAMP))
  385. #    define TIMESTAMP
  386. #  endif
  387. #endif
  388. /*---------------------------------------------------------------------------
  389.     Tandem NSK section:
  390.   ---------------------------------------------------------------------------*/
  391. #ifdef TANDEM
  392. #  include "tandem.h"
  393. #  include <fcntl.h>
  394.    /* use a single LF delimiter so that writes to 101 text files work */
  395. #  define PutNativeEOL  *q++ = native(LF);
  396. #  define lenEOL        1
  397. #  ifndef DATE_FORMAT
  398. #    define DATE_FORMAT  DF_DMY
  399. #  endif
  400. #  define USE_EF_UT_TIME
  401. #  define RESTORE_UIDGID
  402. #endif
  403. /*---------------------------------------------------------------------------
  404.     TOPS-20 section:
  405.   ---------------------------------------------------------------------------*/
  406. #ifdef TOPS20
  407. #  include <sys/types.h>        /* off_t, time_t, dev_t, ... */
  408. #  include <sys/stat.h>
  409. #  include <sys/param.h>
  410. #  include <sys/time.h>
  411. #  include <sys/timeb.h>
  412. #  include <sys/file.h>
  413. #  include <timex.h>
  414. #  include <monsym.h>           /* get amazing monsym() macro */
  415.    extern int open(), close(), read();
  416.    extern int stat(), unlink(), jsys(), fcntl();
  417.    extern long lseek(), dup(), creat();
  418. #  define strchr    index       /* GRR: necessary? */
  419. #  define strrchr   rindex
  420. #  define REALLY_SHORT_SYMS
  421. #  define NO_MKDIR
  422. #  define DIR_BEG       '<'
  423. #  define DIR_END       '>'
  424. #  define DIR_EXT       ".directory"
  425. #  ifndef DATE_FORMAT
  426. #    define DATE_FORMAT DF_MDY
  427. #  endif
  428. #  define EXE_EXTENSION ".exe"  /* just a guess... */
  429. #endif /* TOPS20 */
  430. /*---------------------------------------------------------------------------
  431.     Unix section:
  432.   ---------------------------------------------------------------------------*/
  433. #ifdef UNIX
  434. #  include <sys/types.h>       /* off_t, time_t, dev_t, ... */
  435. #  include <sys/stat.h>
  436. #  ifndef COHERENT
  437. #    include <fcntl.h>         /* O_BINARY for open() w/o CR/LF translation */
  438. #  else /* COHERENT */
  439. #    ifdef _I386
  440. #      include <fcntl.h>       /* Coherent 4.0.x, Mark Williams C */
  441. #    else
  442. #      include <sys/fcntl.h>   /* Coherent 3.10, Mark Williams C */
  443. #    endif
  444. #    define SHORT_SYMS
  445. #    ifndef __COHERENT__       /* Coherent 4.2 has tzset() */
  446. #      define tzset  settz
  447. #    endif
  448. #  endif /* ?COHERENT */
  449. #  ifndef NO_PARAM_H
  450. #    ifdef NGROUPS_MAX
  451. #      undef NGROUPS_MAX       /* SCO bug:  defined again in <sys/param.h> */
  452. #    endif
  453. #    ifdef BSD
  454. #      define TEMP_BSD         /* may be defined again in <sys/param.h> */
  455. #      undef BSD
  456. #    endif
  457. #    include <sys/param.h>     /* conflict with <sys/types.h>, some systems? */
  458. #    ifdef TEMP_BSD
  459. #      undef TEMP_BSD
  460. #      ifndef BSD
  461. #        define BSD
  462. #      endif
  463. #    endif
  464. #  endif /* !NO_PARAM_H */
  465. #  ifdef __osf__
  466. #    define DIRENT
  467. #    ifdef BSD
  468. #      undef BSD
  469. #    endif
  470. #  endif /* __osf__ */
  471. #  ifdef BSD
  472. #    include <sys/time.h>
  473. #    include <sys/timeb.h>
  474. #    ifdef _AIX
  475. #      include <time.h>
  476. #    endif
  477. #  else
  478. #    include <time.h>
  479.      struct tm *gmtime(), *localtime();
  480. #  endif
  481. #  if (defined(BSD4_4) || (defined(SYSV) && defined(MODERN)))
  482. #    include <unistd.h>        /* this includes utime.h on SGIs */
  483. #    if (defined(BSD4_4) || defined(linux))
  484. #      include <utime.h>
  485. #      define GOT_UTIMBUF
  486. #    endif
  487. #  endif
  488. #  if (defined(V7) || defined(pyr_bsd))
  489. #    define strchr   index
  490. #    define strrchr  rindex
  491. #  endif
  492. #  ifdef V7
  493. #    define O_RDONLY 0
  494. #    define O_WRONLY 1
  495. #    define O_RDWR   2
  496. #  endif
  497. #  ifdef MINIX
  498. #    include <stdio.h>
  499. #  endif
  500. #  ifndef DATE_FORMAT
  501. #    define DATE_FORMAT DF_MDY    /* GRR:  customize with locale.h somehow? */
  502. #  endif
  503. #  define lenEOL        1
  504. #  ifdef EBCDIC
  505. #    define PutNativeEOL  *q++ = 'n';
  506. #  else
  507. #    define PutNativeEOL  *q++ = native(LF);
  508. #  endif
  509. #  define SCREENLINES   screenlines()
  510. #  define USE_EF_UT_TIME
  511. #  define SET_DIR_ATTRIB
  512. #  if (!defined(TIMESTAMP) && !defined(NOTIMESTAMP))   /* GRR 970513 */
  513. #    define TIMESTAMP
  514. #  endif
  515. #  define RESTORE_UIDGID
  516. #endif /* UNIX */
  517. /*---------------------------------------------------------------------------
  518.     VM/CMS and MVS section:
  519.   ---------------------------------------------------------------------------*/
  520. #ifdef CMS_MVS
  521. #  include "vmmvs.h"
  522. #  define CLOSE_INFILE()  close_infile(__G)
  523. #endif
  524. /*---------------------------------------------------------------------------
  525.     VMS section:
  526.   ---------------------------------------------------------------------------*/
  527. #ifdef VMS
  528. #  include <types.h>                    /* GRR:  experimenting... */
  529. #  include <stat.h>
  530. #  include <time.h>                     /* the usual non-BSD time functions */
  531. #  include <file.h>                     /* same things as fcntl.h has */
  532. #  include <unixio.h>
  533. #  include <rms.h>
  534. #  define _MAX_PATH (NAM$C_MAXRSS+1)    /* to define FILNAMSIZ below */
  535. #  ifdef RETURN_CODES  /* VMS interprets standard PK return codes incorrectly */
  536. #    define RETURN(ret) return_VMS(__G__ (ret))   /* verbose version */
  537. #    define EXIT(ret)   return_VMS(__G__ (ret))
  538. #  else
  539. #    define RETURN      return_VMS                /* quiet version */
  540. #    define EXIT        return_VMS
  541. #  endif
  542. #  ifdef VMSCLI
  543. #    define USAGE(ret)  VMSCLI_usage(__G__ (ret))
  544. #  endif
  545. #  define DIR_BEG       '['
  546. #  define DIR_END       ']'
  547. #  define DIR_EXT       ".dir"
  548. #  ifndef DATE_FORMAT
  549. #    define DATE_FORMAT DF_MDY
  550. #  endif
  551. #  define lenEOL        1
  552. #  define PutNativeEOL  *q++ = native(LF);
  553. #  define SCREENLINES   screenlines()
  554. #  if (defined(__VMS_VERSION) && !defined(VMS_VERSION))
  555. #    define VMS_VERSION __VMS_VERSION
  556. #  endif
  557. #  if (defined(__VMS_VER) && !defined(__CRTL_VER))
  558. #    define __CRTL_VER __VMS_VER
  559. #  endif
  560. #  if ((!defined(__CRTL_VER)) || (__CRTL_VER < 70000000))
  561. #    define NO_GMTIME           /* gmtime() of earlier VMS C RTLs is broken */
  562. #  else
  563. #    if (!defined(NO_EF_UT_TIME) && !defined(USE_EF_UT_TIME))
  564. #      define USE_EF_UT_TIME
  565. #    endif
  566. #  endif
  567. #  if (!defined(NOTIMESTAMP) && !defined(TIMESTAMP))
  568. #    define TIMESTAMP
  569. #  endif
  570. #  define RESTORE_UIDGID
  571. #endif /* VMS */
  572. /*---------------------------------------------------------------------------
  573.     Win32 (Windows 95/NT) section:
  574.   ---------------------------------------------------------------------------*/
  575. #if (defined(WIN32) && !defined(POCKET_UNZIP))
  576. #  include "win32/w32cfg.h"
  577. #endif
  578. /*************/
  579. /*  Defines  */
  580. /*************/
  581. #define UNZIP_VERSION     20   /* compatible with PKUNZIP 2.0 */
  582. #define VMS_UNZIP_VERSION 42   /* if OS-needed-to-extract is VMS:  can do */
  583. #if (defined(MSDOS) || defined(OS2))
  584. #  define DOS_OS2
  585. #endif
  586. #if (defined(OS2) || defined(WIN32))
  587. #  define OS2_W32
  588. #endif
  589. #if (defined(DOS_OS2) || defined(WIN32))
  590. #  define DOS_OS2_W32
  591. #  define DOS_W32_OS2          /* historical:  don't use */
  592. #endif
  593. #if (defined(DOS_OS2_W32) || defined(__human68k__))
  594. #  define DOS_H68_OS2_W32
  595. #endif
  596. #if (defined(DOS_OS2) || defined(FLEXOS))
  597. #  define DOS_FLX_OS2
  598. #endif
  599. #if (defined(DOS_OS2_W32) || defined(FLEXOS))
  600. #  define DOS_FLX_OS2_W32
  601. #endif
  602. #if (defined(DOS_H68_OS2_W32) || defined(FLEXOS))
  603. #  define DOS_FLX_H68_OS2_W32
  604. #endif
  605. #if (defined(TOPS20) || defined(VMS))
  606. #  define T20_VMS
  607. #endif
  608. #if (defined(MSDOS) || defined(T20_VMS))
  609. #  define DOS_T20_VMS
  610. #endif
  611. /* clean up with a few defaults */
  612. #ifndef DIR_END
  613. #  define DIR_END       '/'     /* last char before program name or filename */
  614. #endif
  615. #ifndef DATE_FORMAT
  616. #  define DATE_FORMAT   DF_MDY  /* defaults to US convention */
  617. #endif
  618. #ifndef CLOSE_INFILE
  619. #  define CLOSE_INFILE()  close(G.zipfd)
  620. #endif
  621. #ifndef RETURN
  622. #  define RETURN        return  /* only used in main() */
  623. #endif
  624. #ifndef EXIT
  625. #  define EXIT          exit
  626. #endif
  627. #ifndef USAGE
  628. #  define USAGE(ret)    usage(__G__ (ret))    /* used in unzip.c, zipinfo.c */
  629. #endif
  630. #ifndef TIMET_TO_NATIVE         /* everybody but MSC 7.0 and Macintosh */
  631. #  define TIMET_TO_NATIVE(x)
  632. #  define NATIVE_TO_TIMET(x)
  633. #endif
  634. #if (defined(DOS_FLX_OS2_W32) || defined(UNIX) || defined(RISCOS))
  635. #  ifndef HAVE_UNLINK
  636. #    define HAVE_UNLINK
  637. #  endif
  638. #endif
  639. #if (defined(AOS_VS) || defined(ATARI) || defined(__BEOS__)) /* GRR: others? */
  640. #  ifndef HAVE_UNLINK
  641. #    define HAVE_UNLINK
  642. #  endif
  643. #endif
  644. /* OS-specific exceptions to the "ANSI <--> INT_SPRINTF" rule */
  645. #if (!defined(PCHAR_SPRINTF) && !defined(INT_SPRINTF))
  646. #  if (defined(SYSV) || defined(CONVEX) || defined(NeXT) || defined(BSD4_4))
  647. #    define INT_SPRINTF      /* sprintf() returns int:  SysVish/Posix */
  648. #  endif
  649. #  if (defined(DOS_FLX_OS2_W32) || defined(VMS) || defined(AMIGA))
  650. #    define INT_SPRINTF      /* sprintf() returns int:  ANSI */
  651. #  endif
  652. #  if (defined(ultrix) || defined(__ultrix)) /* Ultrix 4.3 and newer */
  653. #    if (defined(POSIX) || defined(__POSIX))
  654. #      define INT_SPRINTF    /* sprintf() returns int:  ANSI/Posix */
  655. #    endif
  656. #    ifdef __GNUC__
  657. #      define PCHAR_SPRINTF  /* undetermined actual return value */
  658. #    endif
  659. #  endif
  660. #  if (defined(__osf__) || defined(_AIX) || defined(CMS_MVS))
  661. #    define INT_SPRINTF      /* sprintf() returns int:  ANSI/Posix */
  662. #  endif
  663. #  if defined(sun)
  664. #    define PCHAR_SPRINTF    /* sprintf() returns char *:  SunOS cc *and* gcc */
  665. #  endif
  666. #endif
  667. /* defaults that we hope will take care of most machines in the future */
  668. #if (!defined(PCHAR_SPRINTF) && !defined(INT_SPRINTF))
  669. #  ifdef __STDC__
  670. #    define INT_SPRINTF      /* sprintf() returns int:  ANSI */
  671. #  endif
  672. #  ifndef INT_SPRINTF
  673. #    define PCHAR_SPRINTF    /* sprintf() returns char *:  BSDish */
  674. #  endif
  675. #endif
  676. #define MSG_STDERR(f)  (f & 1)        /* bit 0:  0 = stdout, 1 = stderr */
  677. #define MSG_INFO(f)    ((f & 6) == 0) /* bits 1 and 2:  0 = info */
  678. #define MSG_WARN(f)    ((f & 6) == 2) /* bits 1 and 2:  1 = warning */
  679. #define MSG_ERROR(f)   ((f & 6) == 4) /* bits 1 and 2:  2 = error */
  680. #define MSG_FATAL(f)   ((f & 6) == 6) /* bits 1 and 2:  (3 = fatal error) */
  681. #define MSG_ZFN(f)     (f & 0x0008)   /* bit 3:  1 = print zipfile name */
  682. #define MSG_FN(f)      (f & 0x0010)   /* bit 4:  1 = print filename */
  683. #define MSG_LNEWLN(f)  (f & 0x0020)   /* bit 5:  1 = leading newline if !SOL */
  684. #define MSG_TNEWLN(f)  (f & 0x0040)   /* bit 6:  1 = trailing newline if !SOL */
  685. #define MSG_MNEWLN(f)  (f & 0x0080)   /* bit 7:  1 = trailing NL for prompts */
  686. /* the following are subject to change */
  687. #define MSG_NO_WGUI(f) (f & 0x0100)   /* bit 8:  1 = skip if Windows GUI */
  688. #define MSG_NO_AGUI(f) (f & 0x0200)   /* bit 9:  1 = skip if Acorn GUI */
  689. #define MSG_NO_DLL2(f) (f & 0x0400)   /* bit 10:  1 = skip if OS/2 DLL */
  690. #define MSG_NO_NDLL(f) (f & 0x0800)   /* bit 11:  1 = skip if WIN32 DLL */
  691. #define MSG_NO_WDLL(f) (f & 0x1000)   /* bit 12:  1 = skip if Windows DLL */
  692. #if (defined(MORE) && !defined(SCREENLINES))
  693. #  ifdef DOS_FLX_OS2_W32
  694. #    define SCREENLINES 25  /* can be (should be) a function instead */
  695. #  else
  696. #    define SCREENLINES 24  /* VT-100s are assumed to be minimal hardware */
  697. #  endif
  698. #endif
  699. #define DIR_BLKSIZ  64      /* number of directory entries per block
  700.                              *  (should fit in 4096 bytes, usually) */
  701. #ifndef WSIZE
  702. #  define WSIZE     0x8000  /* window size--must be a power of two, and */
  703. #endif                      /*  at least 32K for zip's deflate method */
  704. #ifndef INBUFSIZ
  705. #  if (defined(MED_MEM) || defined(SMALL_MEM))
  706. #    define INBUFSIZ  2048  /* works for MS-DOS small model */
  707. #  else
  708. #    define INBUFSIZ  8192  /* larger buffers for real OSes */
  709. #  endif
  710. #endif
  711. #ifndef __16BIT__
  712. #  define nearmalloc  malloc
  713. #  define nearfree    free
  714. #  if (!defined(__IBMC__) || !defined(OS2))
  715. #    ifndef near
  716. #      define near
  717. #    endif
  718. #    ifndef far
  719. #      define far
  720. #    endif
  721. #  endif
  722. #endif
  723. #if (defined(DYNALLOC_CRCTAB) && !defined(DYNAMIC_CRC_TABLE))
  724. #  undef DYNALLOC_CRCTAB
  725. #endif
  726. #if (defined(DYNALLOC_CRCTAB) && defined(REENTRANT))
  727. #  undef DYNALLOC_CRCTAB   /* not safe with reentrant code */
  728. #endif
  729. #if (defined(USE_ZLIB) && !defined(USE_OWN_CRCTAB))
  730. #  ifdef DYNALLOC_CRCTAB
  731. #    undef DYNALLOC_CRCTAB
  732. #  endif
  733. #endif
  734. #if (defined(USE_ZLIB) && defined(ASM_CRC))
  735. #  undef ASM_CRC
  736. #endif
  737. /* Logic for case of small memory, length of EOL > 1:  if OUTBUFSIZ == 2048,
  738.  * OUTBUFSIZ>>1 == 1024 and OUTBUFSIZ>>7 == 16; therefore rawbuf is 1008 bytes
  739.  * and transbuf 1040 bytes.  Have room for 32 extra EOL chars; 1008/32 == 31.5
  740.  * chars/line, smaller than estimated 35-70 characters per line for C source
  741.  * and normal text.  Hence difference is sufficient for most "average" files.
  742.  * (Argument scales for larger OUTBUFSIZ.)
  743.  */
  744. #ifdef SMALL_MEM          /* i.e., 16-bit OSes:  MS-DOS, OS/2 1.x, etc. */
  745. #  define LoadFarString(x)       fLoadFarString(__G__ (x))
  746. #  define LoadFarStringSmall(x)  fLoadFarStringSmall(__G__ (x))
  747. #  define LoadFarStringSmall2(x) fLoadFarStringSmall2(__G__ (x))
  748. #  if (defined(_MSC_VER) && (_MSC_VER >= 600))
  749. #    define zfstrcpy(dest, src)  _fstrcpy((dest), (src))
  750. #  endif
  751. #  ifndef Far
  752. #    define Far far  /* __far only works for MSC 6.00, not 6.0a or Borland */
  753. #  endif
  754. #  define OUTBUFSIZ INBUFSIZ
  755. #  if (lenEOL == 1)
  756. #    define RAWBUFSIZ (OUTBUFSIZ>>1)
  757. #  else
  758. #    define RAWBUFSIZ ((OUTBUFSIZ>>1) - (OUTBUFSIZ>>7))
  759. #  endif
  760. #  define TRANSBUFSIZ (OUTBUFSIZ-RAWBUFSIZ)
  761.    typedef short  shrint;            /* short/int or "shrink int" (unshrink) */
  762. #else
  763. #  define zfstrcpy(dest, src)       strcpy((dest), (src))
  764. #  ifdef QDOS
  765. #    define LoadFarString(x)        Qstrfix(x)   /* fix up _ for '.' */
  766. #    define LoadFarStringSmall(x)   Qstrfix(x)
  767. #    define LoadFarStringSmall2(x)  Qstrfix(x)
  768. #  else
  769. #    define LoadFarString(x)        x
  770. #    define LoadFarStringSmall(x)   x
  771. #    define LoadFarStringSmall2(x)  x
  772. #  endif
  773. #  ifdef MED_MEM
  774. #    define OUTBUFSIZ 0xFF80         /* can't malloc arrays of 0xFFE8 or more */
  775. #    define TRANSBUFSIZ 0xFF80
  776.      typedef short  shrint;
  777. #  else
  778. #    define OUTBUFSIZ (lenEOL*WSIZE) /* more efficient text conversion */
  779. #    define TRANSBUFSIZ (lenEOL*OUTBUFSIZ)
  780. #    ifdef AMIGA
  781.        typedef short shrint;
  782. #    else
  783.        typedef int  shrint;          /* for efficiency/speed, we hope... */
  784. #    endif
  785. #  endif /* ?MED_MEM */
  786. #  define RAWBUFSIZ OUTBUFSIZ
  787. #endif /* ?SMALL_MEM */
  788. #ifndef Far
  789. #  define Far
  790. #endif
  791. #ifndef MAIN
  792. #  define MAIN  main
  793. #endif
  794. #ifdef SFX      /* disable some unused features for SFX executables */
  795. #  ifndef NO_ZIPINFO
  796. #    define NO_ZIPINFO
  797. #  endif
  798. #  ifdef TIMESTAMP
  799. #    undef TIMESTAMP
  800. #  endif
  801. #endif
  802. /* user may have defined both by accident...  NOTIMESTAMP takes precedence */
  803. #if (defined(TIMESTAMP) && defined(NOTIMESTAMP))
  804. #  undef TIMESTAMP
  805. #endif
  806. #if (!defined(COPYRIGHT_CLEAN) && !defined(USE_SMITH_CODE))
  807. #  define COPYRIGHT_CLEAN
  808. #endif
  809. #if (!defined(LZW_CLEAN) && !defined(USE_UNSHRINK))
  810. #  define LZW_CLEAN
  811. #endif
  812. #ifndef O_BINARY
  813. #  define O_BINARY  0
  814. #endif
  815. #ifndef PIPE_ERROR
  816. #  define PIPE_ERROR (errno == EPIPE)
  817. #endif
  818. /* File operations--use "b" for binary if allowed or fixed length 512 on VMS */
  819. #ifdef VMS
  820. #  define FOPR  "r","ctx=stm"
  821. #  define FOPM  "r+","ctx=stm","rfm=fix","mrs=512"
  822. #  define FOPW  "w","ctx=stm","rfm=fix","mrs=512"
  823. #endif /* VMS */
  824. #ifdef CMS_MVS
  825. /* Binary files must be RECFM=F,LRECL=1 for ftell() to get correct pos */
  826. /* ...unless byteseek is used.  Let's try that for a while.            */
  827. #  define FOPR "rb,byteseek"
  828. #  define FOPM "r+b,byteseek"
  829. #  define FOPW "wb,recfm=v,lrecl=32760"
  830. #  ifdef MVS
  831. #    define FOPWT "w,lrecl=133"
  832. #  else
  833. #    define FOPWT "w"
  834. #  endif
  835. #endif /* CMS_MVS */
  836. #ifdef TOPS20          /* TOPS-20 MODERN?  You kidding? */
  837. #  define FOPW "w8"
  838. #endif /* TOPS20 */
  839. /* Defaults when nothing special has been defined previously. */
  840. #ifdef MODERN
  841. #  ifndef FOPR
  842. #    define FOPR "rb"
  843. #  endif
  844. #  ifndef FOPM
  845. #    define FOPM "r+b"
  846. #  endif
  847. #  ifndef FOPW
  848. #    define FOPW "wb"
  849. #  endif
  850. #  ifndef FOPWT
  851. #    define FOPWT "wt"
  852. #  endif
  853. #else /* !MODERN */
  854. #  ifndef FOPR
  855. #    define FOPR "r"
  856. #  endif
  857. #  ifndef FOPM
  858. #    define FOPM "r+"
  859. #  endif
  860. #  ifndef FOPW
  861. #    define FOPW "w"
  862. #  endif
  863. #  ifndef FOPWT
  864. #    define FOPWT "w"
  865. #  endif
  866. #endif /* ?MODERN */
  867. /*
  868.  * If <limits.h> exists on most systems, should include that, since it may
  869.  * define some or all of the following:  NAME_MAX, PATH_MAX, _POSIX_NAME_MAX,
  870.  * _POSIX_PATH_MAX.
  871.  */
  872. #ifdef DOS_FLX_OS2
  873. #  include <limits.h>
  874. #endif
  875. #ifndef PATH_MAX
  876. #  ifdef MAXPATHLEN
  877. #    define PATH_MAX      MAXPATHLEN    /* in <sys/param.h> on some systems */
  878. #  else
  879. #    ifdef _MAX_PATH
  880. #      define PATH_MAX    _MAX_PATH
  881. #    else
  882. #      if FILENAME_MAX > 255
  883. #        define PATH_MAX  FILENAME_MAX  /* used like PATH_MAX on some systems */
  884. #      else
  885. #        define PATH_MAX  1024
  886. #      endif
  887. #    endif /* ?_MAX_PATH */
  888. #  endif /* ?MAXPATHLEN */
  889. #endif /* !PATH_MAX */
  890. #define FILNAMSIZ  PATH_MAX
  891. #ifdef SHORT_SYMS                   /* Mark Williams C, ...? */
  892. #  define extract_or_test_files     xtr_or_tst_files
  893. #  define extract_or_test_member    xtr_or_tst_member
  894. #endif
  895. #ifdef REALLY_SHORT_SYMS            /* TOPS-20 linker:  first 6 chars */
  896. #  define process_cdir_file_hdr     XXpcdfh
  897. #  define process_local_file_hdr    XXplfh
  898. #  define extract_or_test_files     XXxotf  /* necessary? */
  899. #  define extract_or_test_member    XXxotm  /* necessary? */
  900. #  define check_for_newer           XXcfn
  901. #  define overwrite_all             XXoa
  902. #  define process_all_files         XXpaf
  903. #  define extra_field               XXef
  904. #  define explode_lit8              XXel8
  905. #  define explode_lit4              XXel4
  906. #  define explode_nolit8            XXnl8
  907. #  define explode_nolit4            XXnl4
  908. #  define cpdist8                   XXcpdist8
  909. #  define inflate_codes             XXic
  910. #  define inflate_stored            XXis
  911. #  define inflate_fixed             XXif
  912. #  define inflate_dynamic           XXid
  913. #  define inflate_block             XXib
  914. #  define maxcodemax                XXmax
  915. #endif
  916. #ifndef S_TIME_T_MAX            /* max value of signed (>= 32-bit) time_t */
  917. #  define S_TIME_T_MAX  ((time_t)(ulg)0x7fffffffL)
  918. #endif
  919. #ifndef U_TIME_T_MAX            /* max value of unsigned (>= 32-bit) time_t */
  920. #  define U_TIME_T_MAX  ((time_t)(ulg)0xffffffffL)
  921. #endif
  922. #ifdef DOSTIME_MINIMUM          /* min DOSTIME value (1980-01-01) */
  923. #  undef DOSTIME_MINIMUM
  924. #endif
  925. #define DOSTIME_MINIMUM ((ulg)0x00210000L)
  926. #ifdef DOSTIME_2038_01_18       /* approximate DOSTIME equivalent of */
  927. #  undef DOSTIME_2038_01_18     /*  the signed-32-bit time_t limit */
  928. #endif
  929. #define DOSTIME_2038_01_18 ((ulg)0x74320000L)
  930. #ifdef QDOS
  931. #  define ZSUFX         "_zip"
  932. #  define ALT_ZSUFX     ".zip"
  933. #else
  934. #  ifdef RISCOS
  935. #    define ZSUFX       "/zip"
  936. #  else
  937. #    define ZSUFX       ".zip"
  938. #  endif
  939. #  define ALT_ZSUFX     ".ZIP"   /* Unix-only so far (only case-sensitive fs) */
  940. #endif
  941. #define CENTRAL_HDR_SIG   "0102"   /* the infamous "PK" signature bytes, */
  942. #define LOCAL_HDR_SIG     "0304"   /*  sans "PK" (so unzip executable not */
  943. #define END_CENTRAL_SIG   "0506"   /*  mistaken for zipfile itself) */
  944. #define EXTD_LOCAL_SIG    "0710"   /* [ASCII "113" == EBCDIC "80" ??] */
  945. /* choice of activities for do_string() */
  946. #define SKIP              0             /* skip header block */
  947. #define DISPLAY           1             /* display archive comment (ASCII) */
  948. #define DISPL_8           5             /* display file comment (ext. ASCII) */
  949. #define DS_FN             2             /* read filename (ext. ASCII) */
  950. #define EXTRA_FIELD       3             /* copy extra field into buffer */
  951. #define DS_EF             3
  952. #ifdef AMIGA
  953. #  define FILENOTE        4
  954. #endif
  955. #define DOES_NOT_EXIST    -1   /* return values for check_for_newer() */
  956. #define EXISTS_AND_OLDER  0
  957. #define EXISTS_AND_NEWER  1
  958. #define ROOT              0    /* checkdir() extract-to path:  called once */
  959. #define INIT              1    /* allocate buildpath:  called once per member */
  960. #define APPEND_DIR        2    /* append a dir comp.:  many times per member */
  961. #define APPEND_NAME       3    /* append actual filename:  once per member */
  962. #define GETPATH           4    /* retrieve the complete path and free it */
  963. #define END               5    /* free root path prior to exiting program */
  964. /* version_made_by codes (central dir):  make sure these */
  965. /*  are not defined on their respective systems!! */
  966. #define FS_FAT_           0    /* filesystem used by MS-DOS, OS/2, Win32 */
  967. #define AMIGA_            1
  968. #define VMS_              2
  969. #define UNIX_             3
  970. #define VM_CMS_           4
  971. #define ATARI_            5    /* what if it's a minix filesystem? [cjh] */
  972. #define FS_HPFS_          6    /* filesystem used by OS/2 (and NT 3.x) */
  973. #define MAC_              7    /* HFS filesystem used by MacOS */
  974. #define Z_SYSTEM_         8
  975. #define CPM_              9
  976. #define TOPS20_           10
  977. #define FS_NTFS_          11   /* filesystem used by Windows NT */
  978. #define QDOS_             12
  979. #define ACORN_            13   /* Archimedes Acorn RISC OS */
  980. #define FS_VFAT_          14   /* filesystem used by Windows 95, NT */
  981. #define MVS_              15
  982. #define BEOS_             16   /* hybrid POSIX/database filesystem */
  983. #define TANDEM_           17   /* Tandem/NSK */
  984. #define NUM_HOSTS         18   /* index of last system + 1 */
  985. #define STORED            0    /* compression methods */
  986. #define SHRUNK            1
  987. #define REDUCED1          2
  988. #define REDUCED2          3
  989. #define REDUCED3          4
  990. #define REDUCED4          5
  991. #define IMPLODED          6
  992. #define TOKENIZED         7
  993. #define DEFLATED          8
  994. #define ENHDEFLATED       9
  995. #define DCLIMPLODED      10
  996. #define NUM_METHODS      11    /* index of last method + 1 */
  997. /* don't forget to update list_files(), extract.c and zipinfo.c appropriately
  998.  * if NUM_METHODS changes */
  999. /* (the PK-class error codes are public and have been moved into unzip.h) */
  1000. #define DF_MDY            0    /* date format 10/26/91 (USA only) */
  1001. #define DF_DMY            1    /* date format 26/10/91 (most of the world) */
  1002. #define DF_YMD            2    /* date format 91/10/26 (a few countries) */
  1003. /*---------------------------------------------------------------------------
  1004.     Extra-field block ID values and offset info.
  1005.   ---------------------------------------------------------------------------*/
  1006. /* extra-field ID values, all little-endian: */
  1007. #define EF_AV        0x0007    /* PKWARE's authenticity verification */
  1008. #define EF_OS2       0x0009    /* OS/2 extended attributes */
  1009. #define EF_PKW32     0x000a    /* PKWARE's Win95/98/WinNT filetimes */
  1010. #define EF_PKVMS     0x000c    /* PKWARE's VMS */
  1011. #define EF_PKUNIX    0x000d    /* PKWARE's Unix */
  1012. #define EF_IZVMS     0x4d49    /* Info-ZIP's VMS ("IM") */
  1013. #define EF_IZUNIX    0x5855    /* Info-ZIP's old Unix[1] ("UX") */
  1014. #define EF_IZUNIX2   0x7855    /* Info-ZIP's new Unix[2] ("Ux") */
  1015. #define EF_TIME      0x5455    /* universal timestamp ("UT") */
  1016. #define EF_MAC3      0x334d    /* Info-ZIP's new Macintosh (= "M3") */
  1017. #define EF_JLMAC     0x07c8    /* Johnny Lee's old Macintosh (= 1992) */
  1018. #define EF_ZIPIT     0x2605    /* Thomas Brown's Macintosh (ZipIt) */
  1019. #define EF_ZIPIT2    0x2705    /* T. Brown's Mac (ZipIt) v 1.3.8 and newer ? */
  1020. #define EF_VMCMS     0x4704    /* Info-ZIP's VM/CMS ("04G") */
  1021. #define EF_MVS       0x470f    /* Info-ZIP's MVS ("17G") */
  1022. #define EF_ACL       0x4c41    /* (OS/2) access control list ("AL") */
  1023. #define EF_NTSD      0x4453    /* NT security descriptor ("SD") */
  1024. #define EF_BEOS      0x6542    /* BeOS ("Be") */
  1025. #define EF_QDOS      0xfb4a    /* SMS/QDOS ("J373") */
  1026. #define EF_AOSVS     0x5356    /* AOS/VS ("VS") */
  1027. #define EF_SPARK     0x4341    /* David Pilling's Acorn/SparkFS ("AC") */
  1028. #define EF_MD5       0x4b46    /* Fred Kantor's MD5 ("FK") */
  1029. #define EF_ASIUNIX   0x756e    /* ASi's Unix ("nu") */
  1030. #define EB_HEADSIZE       4    /* length of extra field block header */
  1031. #define EB_ID             0    /* offset of block ID in header */
  1032. #define EB_LEN            2    /* offset of data length field in header */
  1033. #define EB_UCSIZE_P       0    /* offset of ucsize field in compr. data */
  1034. #define EB_CMPRHEADLEN    6    /* lenght of compression header */
  1035. #define EB_UX_MINLEN      8    /* minimal "UX" field contains atime, mtime */
  1036. #define EB_UX_FULLSIZE    12   /* full "UX" field (atime, mtime, uid, gid) */
  1037. #define EB_UX_ATIME       0    /* offset of atime in "UX" extra field data */
  1038. #define EB_UX_MTIME       4    /* offset of mtime in "UX" extra field data */
  1039. #define EB_UX_UID         8    /* byte offset of UID in "UX" field data */
  1040. #define EB_UX_GID         10   /* byte offset of GID in "UX" field data */
  1041. #define EB_UX2_MINLEN     4    /* minimal "Ux" field contains UID/GID */
  1042. #define EB_UX2_UID        0    /* byte offset of UID in "Ux" field data */
  1043. #define EB_UX2_GID        2    /* byte offset of GID in "Ux" field data */
  1044. #define EB_UX2_VALID      (1 << 8)      /* UID/GID present */
  1045. #define EB_UT_MINLEN      1    /* minimal UT field contains Flags byte */
  1046. #define EB_UT_FLAGS       0    /* byte offset of Flags field */
  1047. #define EB_UT_TIME1       1    /* byte offset of 1st time value */
  1048. #define EB_UT_FL_MTIME    (1 << 0)      /* mtime present */
  1049. #define EB_UT_FL_ATIME    (1 << 1)      /* atime present */
  1050. #define EB_UT_FL_CTIME    (1 << 2)      /* ctime present */
  1051. #define EB_FLGS_OFFS      4    /* offset of flags area in generic compressed
  1052.                                   extra field blocks (OS2, NT, and others) */
  1053. #define EB_OS2_HLEN       4    /* size of OS2/ACL compressed data header */
  1054. #define EB_BEOS_HLEN      5    /* length of BeOS e.f attribute header */
  1055. #define EB_BE_FL_UNCMPR   0x01 /* "BeOS attributes uncompressed" bit flag */
  1056. #define EB_MAC3_HLEN      14   /* length of Mac3 attribute block header */
  1057. #define EB_M3_FL_DATFRK   0x01 /* "this entry is data fork" flag */
  1058. #define EB_M3_FL_UNCMPR   0x04 /* "Mac3 attributes uncompressed" bit flag */
  1059. #define EB_M3_FL_TIME64   0x08 /* "Mac3 time fields are 64 bit wide" flag */
  1060. #define EB_M3_FL_NOUTC    0x10 /* "Mac3 timezone offset fields missing" flag */
  1061. #define EB_NTSD_C_LEN     4    /* length of central NT security data */
  1062. #define EB_NTSD_L_LEN     5    /* length of minimal local NT security data */
  1063. #define EB_NTSD_VERSION   4    /* offset of NTSD version byte */
  1064. #define EB_NTSD_MAX_VER   (0)  /* maximum version # we know how to handle */
  1065. #define EB_ASI_CRC32      0    /* offset of ASI Unix field's crc32 checksum */
  1066. #define EB_ASI_MODE       4    /* offset of ASI Unix permission mode field */
  1067. /*---------------------------------------------------------------------------
  1068.     True sizes of the various headers, as defined by PKWARE--so it is not
  1069.     likely that these will ever change.  But if they do, make sure both these
  1070.     defines AND the typedefs below get updated accordingly.
  1071.   ---------------------------------------------------------------------------*/
  1072. #define LREC_SIZE   26   /* lengths of local file headers, central */
  1073. #define CREC_SIZE   42   /*  directory headers, and the end-of-    */
  1074. #define ECREC_SIZE  18   /*  central-dir record, respectively      */
  1075. #define MAX_BITS    13                 /* used in unshrink() */
  1076. #define HSIZE       (1 << MAX_BITS)    /* size of global work area */
  1077. #define LF     10        /* 'n' on ASCII machines; must be 10 due to EBCDIC */
  1078. #define CR     13        /* 'r' on ASCII machines; must be 13 due to EBCDIC */
  1079. #define CTRLZ  26        /* DOS & OS/2 EOF marker (used in fileio.c, vms.c) */
  1080. #ifdef EBCDIC
  1081. #  define foreign(c)    ascii[(uch)(c)]
  1082. #  define native(c)     ebcdic[(uch)(c)]
  1083. #  define NATIVE        "EBCDIC"
  1084. #  define NOANSIFILT
  1085. #endif
  1086. #if (defined(CRAY) && defined(ZMEM))
  1087. #  undef ZMEM
  1088. #endif
  1089. #ifdef ZMEM
  1090. #  undef ZMEM
  1091. #  define memcmp(b1,b2,len)      bcmp(b2,b1,len)
  1092. #  define memcpy(dest,src,len)   bcopy(src,dest,len)
  1093. #  define memzero                bzero
  1094. #else
  1095. #  define memzero(dest,len)      memset(dest,0,len)
  1096. #endif
  1097. #ifdef VMS
  1098. #  define ENV_UNZIP       "UNZIP_OPTS"     /* names of environment variables */
  1099. #  define ENV_ZIPINFO     "ZIPINFO_OPTS"
  1100. #endif /* VMS */
  1101. #ifdef RISCOS
  1102. #  define ENV_UNZIP       "Unzip$Options"
  1103. #  define ENV_ZIPINFO     "Zipinfo$Options"
  1104. #  define ENV_UNZIPEXTS   "Unzip$Exts"
  1105. #endif /* RISCOS */
  1106. #ifndef ENV_UNZIP
  1107. #  define ENV_UNZIP       "UNZIP"          /* the standard names */
  1108. #  define ENV_ZIPINFO     "ZIPINFO"
  1109. #endif
  1110. #define ENV_UNZIP2        "UNZIPOPT"     /* alternate names, for zip compat. */
  1111. #define ENV_ZIPINFO2      "ZIPINFOOPT"
  1112. #if (!defined(QQ) && !defined(NOQQ))
  1113. #  define QQ
  1114. #endif
  1115. #ifdef QQ                         /* Newtware version:  no file */
  1116. #  define QCOND     (!uO.qflag)   /*  comments with -vq or -vqq */
  1117. #else                             /* Bill Davidsen version:  no way to */
  1118. #  define QCOND     (longhdr)     /*  kill file comments when listing */
  1119. #endif
  1120. #ifdef OLD_QQ
  1121. #  define QCOND2    (uO.qflag < 2)
  1122. #else
  1123. #  define QCOND2    (!uO.qflag)
  1124. #endif
  1125. #ifndef TRUE
  1126. #  define TRUE      1   /* sort of obvious */
  1127. #endif
  1128. #ifndef FALSE
  1129. #  define FALSE     0
  1130. #endif
  1131. #ifndef SEEK_SET
  1132. #  define SEEK_SET  0
  1133. #  define SEEK_CUR  1
  1134. #  define SEEK_END  2
  1135. #endif
  1136. #if (defined(UNIX) && defined(S_IFLNK) && !defined(MTS))
  1137. #  define SYMLINKS
  1138. #  ifndef S_ISLNK
  1139. #    define S_ISLNK(m)  (((m) & S_IFMT) == S_IFLNK)
  1140. #  endif
  1141. #endif /* UNIX && S_IFLNK && !MTS */
  1142. #ifndef S_ISDIR
  1143. #  ifdef CMS_MVS
  1144. #    define S_ISDIR(m)  (FALSE)
  1145. #  else
  1146. #    define S_ISDIR(m)  (((m) & S_IFMT) == S_IFDIR)
  1147. # endif
  1148. #endif
  1149. #ifndef IS_VOLID
  1150. #  define IS_VOLID(m)  ((m) & 0x08)
  1151. #endif
  1152. /**************/
  1153. /*  Typedefs  */
  1154. /**************/
  1155. #ifdef NO_UID_GID
  1156. #  ifdef UID_USHORT
  1157.      typedef unsigned short  uid_t;    /* TI SysV.3 */
  1158.      typedef unsigned short  gid_t;
  1159. #  else
  1160.      typedef unsigned int    uid_t;    /* SCO Xenix */
  1161.      typedef unsigned int    gid_t;
  1162. #  endif
  1163. #endif
  1164. #if (defined(WIN32) || defined(sgi) || defined(GOT_UTIMBUF) || defined(ATARI))
  1165.    typedef struct utimbuf ztimbuf;
  1166. #else
  1167.    typedef struct ztimbuf {
  1168.        time_t actime;        /* new access time */
  1169.        time_t modtime;       /* new modification time */
  1170.    } ztimbuf;
  1171. #endif
  1172. typedef struct iztimes {
  1173.    time_t atime;             /* new access time */
  1174.    time_t mtime;             /* new modification time */
  1175.    time_t ctime;             /* used for creation time; NOT same as st_ctime */
  1176. } iztimes;
  1177. #ifdef SET_DIR_ATTRIB
  1178.    typedef struct dirtime {  /* temporary struct for holding directory info */
  1179.        struct dirtime *next; /*  until can be sorted and set at end */
  1180.        char *fn;             /* filename of directory */
  1181.        union {
  1182.            iztimes t3;       /* mtime, atime, ctime */
  1183.            ztimbuf t2;       /* modtime, actime */
  1184.        } u;
  1185.        unsigned perms;       /* same as min_info.file_attr */
  1186.        int have_uidgid;      /* flag */
  1187.        ush uidgid[2];
  1188.    } dirtime;
  1189. #endif /* SET_DIR_ATTRIB */
  1190. typedef struct min_info {
  1191.     long offset;
  1192.     ulg crc;                 /* crc (needed if extended header) */
  1193.     ulg compr_size;          /* compressed size (needed if extended header) */
  1194.     ulg uncompr_size;        /* uncompressed size (needed if extended header) */
  1195.     int hostnum;
  1196.     unsigned file_attr;      /* local flavor, as used by creat(), chmod()... */
  1197.     unsigned encrypted : 1;  /* file encrypted: decrypt before uncompressing */
  1198.     unsigned ExtLocHdr : 1;  /* use time instead of CRC for decrypt check */
  1199.     unsigned textfile : 1;   /* file is text (according to zip) */
  1200.     unsigned textmode : 1;   /* file is to be extracted as text */
  1201.     unsigned lcflag : 1;     /* convert filename to lowercase */
  1202.     unsigned vollabel : 1;   /* "file" is an MS-DOS volume (disk) label */
  1203. } min_info;
  1204. typedef struct VMStimbuf {
  1205.     char *revdate;    /* (both roughly correspond to Unix modtime/st_mtime) */
  1206.     char *credate;
  1207. } VMStimbuf;
  1208. /*---------------------------------------------------------------------------
  1209.     Zipfile work area declarations.
  1210.   ---------------------------------------------------------------------------*/
  1211. #ifdef MALLOC_WORK
  1212.    union work {
  1213.      struct {                 /* unshrink(): */
  1214.        shrint *Parent;          /* (8193 * sizeof(shrint)) */
  1215.        uch *value;
  1216.        uch *Stack;
  1217.      } shrink;
  1218.      uch *Slide;              /* explode(), inflate(), unreduce() */
  1219.    };
  1220. #else /* !MALLOC_WORK */
  1221.    union work {
  1222.      struct {                 /* unshrink(): */
  1223.        shrint Parent[HSIZE];    /* (8192 * sizeof(shrint)) == 16KB minimum */
  1224.        uch value[HSIZE];        /* 8KB */
  1225.        uch Stack[HSIZE];        /* 8KB */
  1226.      } shrink;                  /* total = 32KB minimum; 80KB on Cray/Alpha */
  1227.      uch Slide[WSIZE];        /* explode(), inflate(), unreduce() */
  1228.    };
  1229. #endif /* ?MALLOC_WORK */
  1230. #define slide  G.area.Slide
  1231. #if (defined(DLL) && !defined(NO_SLIDE_REDIR))
  1232. #  define redirSlide G.redirect_sldptr
  1233. #else
  1234. #  define redirSlide G.area.Slide
  1235. #endif
  1236. /*---------------------------------------------------------------------------
  1237.     Zipfile layout declarations.  If these headers ever change, make sure the
  1238.     xxREC_SIZE defines (above) change with them!
  1239.   ---------------------------------------------------------------------------*/
  1240.    typedef uch   local_byte_hdr[ LREC_SIZE ];
  1241. #      define L_VERSION_NEEDED_TO_EXTRACT_0     0
  1242. #      define L_VERSION_NEEDED_TO_EXTRACT_1     1
  1243. #      define L_GENERAL_PURPOSE_BIT_FLAG        2
  1244. #      define L_COMPRESSION_METHOD              4
  1245. #      define L_LAST_MOD_DOS_DATETIME           6
  1246. #      define L_CRC32                           10
  1247. #      define L_COMPRESSED_SIZE                 14
  1248. #      define L_UNCOMPRESSED_SIZE               18
  1249. #      define L_FILENAME_LENGTH                 22
  1250. #      define L_EXTRA_FIELD_LENGTH              24
  1251.    typedef uch   cdir_byte_hdr[ CREC_SIZE ];
  1252. #      define C_VERSION_MADE_BY_0               0
  1253. #      define C_VERSION_MADE_BY_1               1
  1254. #      define C_VERSION_NEEDED_TO_EXTRACT_0     2
  1255. #      define C_VERSION_NEEDED_TO_EXTRACT_1     3
  1256. #      define C_GENERAL_PURPOSE_BIT_FLAG        4
  1257. #      define C_COMPRESSION_METHOD              6
  1258. #      define C_LAST_MOD_DOS_DATETIME           8
  1259. #      define C_CRC32                           12
  1260. #      define C_COMPRESSED_SIZE                 16
  1261. #      define C_UNCOMPRESSED_SIZE               20
  1262. #      define C_FILENAME_LENGTH                 24
  1263. #      define C_EXTRA_FIELD_LENGTH              26
  1264. #      define C_FILE_COMMENT_LENGTH             28
  1265. #      define C_DISK_NUMBER_START               30
  1266. #      define C_INTERNAL_FILE_ATTRIBUTES        32
  1267. #      define C_EXTERNAL_FILE_ATTRIBUTES        34
  1268. #      define C_RELATIVE_OFFSET_LOCAL_HEADER    38
  1269.    typedef uch   ec_byte_rec[ ECREC_SIZE+4 ];
  1270. /*     define SIGNATURE                         0   space-holder only */
  1271. #      define NUMBER_THIS_DISK                  4
  1272. #      define NUM_DISK_WITH_START_CENTRAL_DIR   6
  1273. #      define NUM_ENTRIES_CENTRL_DIR_THS_DISK   8
  1274. #      define TOTAL_ENTRIES_CENTRAL_DIR         10
  1275. #      define SIZE_CENTRAL_DIRECTORY            12
  1276. #      define OFFSET_START_CENTRAL_DIRECTORY    16
  1277. #      define ZIPFILE_COMMENT_LENGTH            20
  1278.    typedef struct local_file_header {                 /* LOCAL */
  1279.        uch version_needed_to_extract[2];
  1280.        ush general_purpose_bit_flag;
  1281.        ush compression_method;
  1282.        ulg last_mod_dos_datetime;
  1283.        ulg crc32;
  1284.        ulg csize;
  1285.        ulg ucsize;
  1286.        ush filename_length;
  1287.        ush extra_field_length;
  1288.    } local_file_hdr;
  1289. #if 0
  1290.    typedef struct central_directory_file_header {     /* CENTRAL */
  1291.        uch version_made_by[2];
  1292.        uch version_needed_to_extract[2];
  1293.        ush general_purpose_bit_flag;
  1294.        ush compression_method;
  1295.        ulg last_mod_dos_datetime;
  1296.        ulg crc32;
  1297.        ulg csize;
  1298.        ulg ucsize;
  1299.        ush filename_length;
  1300.        ush extra_field_length;
  1301.        ush file_comment_length;
  1302.        ush disk_number_start;
  1303.        ush internal_file_attributes;
  1304.        ulg external_file_attributes;
  1305.        ulg relative_offset_local_header;
  1306.    } cdir_file_hdr;
  1307. #endif /* 0 */
  1308.    typedef struct end_central_dir_record {            /* END CENTRAL */
  1309.        ush number_this_disk;
  1310.        ush num_disk_start_cdir;
  1311.        ush num_entries_centrl_dir_ths_disk;
  1312.        ush total_entries_central_dir;
  1313.        ulg size_central_directory;
  1314.        ulg offset_start_central_directory;
  1315.        ush zipfile_comment_length;
  1316.    } ecdir_rec;
  1317. /* Huffman code lookup table entry--this entry is four bytes for machines
  1318.    that have 16-bit pointers (e.g. PC's in the small or medium model).
  1319.    Valid extra bits are 0..13.  e == 15 is EOB (end of block), e == 16
  1320.    means that v is a literal, 16 < e < 32 means that v is a pointer to
  1321.    the next table, which codes e - 16 bits, and lastly e == 99 indicates
  1322.    an unused code.  If a code with e == 99 is looked up, this implies an
  1323.    error in the data. */
  1324. struct huft {
  1325.     uch e;                /* number of extra bits or operation */
  1326.     uch b;                /* number of bits in this code or subcode */
  1327.     union {
  1328.         ush n;            /* literal, length base, or distance base */
  1329.         struct huft *t;   /* pointer to next level of table */
  1330.     } v;
  1331. };
  1332. typedef struct _APIDocStruct {
  1333.     char *compare;
  1334.     char *function;
  1335.     char *syntax;
  1336.     char *purpose;
  1337. } APIDocStruct;
  1338. /*************/
  1339. /*  Globals  */
  1340. /*************/
  1341. #if (defined(OS2) && !defined(FUNZIP))
  1342. #  include "os2/os2data.h"
  1343. #endif
  1344. #include "globals.h"
  1345. /*************************/
  1346. /*  Function Prototypes  */
  1347. /*************************/
  1348. /*---------------------------------------------------------------------------
  1349.     Functions in unzip.c (initialization routines):
  1350.   ---------------------------------------------------------------------------*/
  1351. #ifndef WINDLL
  1352.    int    MAIN                   OF((int argc, char **argv));
  1353.    int    unzip                  OF((__GPRO__ int argc, char **argv));
  1354.    int    uz_opts                OF((__GPRO__ int *pargc, char ***pargv));
  1355.    int    usage                  OF((__GPRO__ int error));
  1356. #endif /* !WINDLL */
  1357. /*---------------------------------------------------------------------------
  1358.     Functions in process.c (main driver routines):
  1359.   ---------------------------------------------------------------------------*/
  1360. int      process_zipfiles        OF((__GPRO));
  1361. void     free_G_buffers          OF((__GPRO));
  1362. /* static int    do_seekable     OF((__GPRO__ int lastchance)); */
  1363. /* static int    find_ecrec      OF((__GPRO__ long searchlen)); */
  1364. int      uz_end_central          OF((__GPRO));
  1365. int      process_cdir_file_hdr   OF((__GPRO));
  1366. int      get_cdir_ent            OF((__GPRO));
  1367. int      process_local_file_hdr  OF((__GPRO));
  1368. unsigned ef_scan_for_izux        OF((uch *ef_buf, unsigned ef_len, int ef_is_c,
  1369.                                      ulg dos_mdatetime,
  1370.                                      iztimes *z_utim, ush *z_uidgid));
  1371. #ifndef SFX
  1372. /*---------------------------------------------------------------------------
  1373.     Functions in zipinfo.c (`zipinfo-style' listing routines):
  1374.   ---------------------------------------------------------------------------*/
  1375. #ifndef NO_ZIPINFO
  1376. #ifndef WINDLL
  1377.    int   zi_opts                 OF((__GPRO__ int *pargc, char ***pargv));
  1378. #endif
  1379. int      zi_end_central          OF((__GPRO));
  1380. int      zipinfo                 OF((__GPRO));
  1381. /* static int      zi_long       OF((__GPRO__ ulg *pEndprev)); */
  1382. /* static int      zi_short      OF((__GPRO)); */
  1383. /* static char    *zi_time       OF((__GPRO__ ZCONST ulg *datetimez,
  1384.                                      ZCONST time_t *modtimez, char *d_t_str));*/
  1385. #endif /* !NO_ZIPINFO */
  1386. /*---------------------------------------------------------------------------
  1387.     Functions in list.c (generic zipfile-listing routines):
  1388.   ---------------------------------------------------------------------------*/
  1389. int      list_files              OF((__GPRO));
  1390. #ifdef TIMESTAMP
  1391.    int   get_time_stamp          OF((__GPRO__  time_t *last_modtime,
  1392.                                      unsigned *nmember));
  1393. #endif
  1394. int      ratio                   OF((ulg uc, ulg c));
  1395. void     fnprint                 OF((__GPRO));
  1396. #endif /* !SFX */
  1397. /*---------------------------------------------------------------------------
  1398.     Functions in fileio.c:
  1399.   ---------------------------------------------------------------------------*/
  1400. int      open_input_file      OF((__GPRO));
  1401. int      open_outfile         OF((__GPRO));                    /* also vms.c */
  1402. void     undefer_input        OF((__GPRO));
  1403. void     defer_leftover_input OF((__GPRO));
  1404. unsigned readbuf              OF((__GPRO__ char *buf, register unsigned len));
  1405. int      readbyte             OF((__GPRO));
  1406. int      fillinbuf            OF((__GPRO));
  1407. #ifdef FUNZIP
  1408.    int   flush                OF((__GPRO__ ulg size));  /* actually funzip.c */
  1409. #else
  1410.    int   flush                OF((__GPRO__ uch *buf, ulg size, int unshrink));
  1411. #endif
  1412. /* static int  disk_error     OF((__GPRO)); */
  1413. void     handler              OF((int signal));
  1414. time_t   dos_to_unix_time     OF((ulg dos_datetime));
  1415. int      check_for_newer      OF((__GPRO__ char *filename)); /* os2,vmcms,vms */
  1416. int      do_string            OF((__GPRO__ unsigned int len, int option));
  1417. ush      makeword             OF((ZCONST uch *b));
  1418. ulg      makelong             OF((ZCONST uch *sig));
  1419. #if (!defined(STR_TO_ISO) || defined(NEED_STR2ISO))
  1420.    char *str2iso              OF((char *dst, ZCONST char *src));
  1421. #endif
  1422. #if (!defined(STR_TO_OEM) || defined(NEED_STR2OEM))
  1423.    char *str2oem              OF((char *dst, ZCONST char *src));
  1424. #endif
  1425. int      zstrnicmp            OF((register ZCONST char *s1,
  1426.                                   register ZCONST char *s2,
  1427.                                   register unsigned n));
  1428. #ifdef REGULUS
  1429.    int zstat                  OF((char *p, struct stat *s));
  1430. #endif
  1431. #ifdef ZMEM   /* MUST be ifdef'd because of conflicts with the standard def. */
  1432.    zvoid *memset OF((register zvoid *, register int, register unsigned int));
  1433.    int    memcmp OF((register ZCONST zvoid*, register ZCONST zvoid *,
  1434.                      register unsigned int));
  1435.    zvoid *memcpy OF((register zvoid *, register ZCONST zvoid *,
  1436.                      register unsigned int));
  1437. #endif
  1438. #ifdef SMALL_MEM
  1439.    char *fLoadFarString       OF((__GPRO__ const char Far *sz));
  1440.    char *fLoadFarStringSmall  OF((__GPRO__ const char Far *sz));
  1441.    char *fLoadFarStringSmall2 OF((__GPRO__ const char Far *sz));
  1442.    #ifndef zfstrcpy
  1443.      char Far * Far zfstrcpy  OF((char Far *s1, const char Far *s2));
  1444.    #endif
  1445. #endif
  1446. /*---------------------------------------------------------------------------
  1447.     Functions in extract.c:
  1448.   ---------------------------------------------------------------------------*/
  1449. int    extract_or_test_files     OF((__GPRO));
  1450. /* static int   store_info          OF((void)); */
  1451. /* static int   extract_or_test_member   OF((__GPRO)); */
  1452. /* static int   TestExtraField   OF((__GPRO__ uch *ef, unsigned ef_len)); */
  1453. /* static int   test_OS2         OF((__GPRO__ uch *eb, unsigned eb_size)); */
  1454. /* static int   test_NT          OF((__GPRO__ uch *eb, unsigned eb_size)); */
  1455. int    memextract                OF((__GPRO__ uch *tgt, ulg tgtsize,
  1456.                                      uch *src, ulg srcsize));
  1457. int    memflush                  OF((__GPRO__ uch *rawbuf, ulg size));
  1458. char  *fnfilter                  OF((ZCONST char *raw, uch *space));
  1459. /*---------------------------------------------------------------------------
  1460.     Decompression functions:
  1461.   ---------------------------------------------------------------------------*/
  1462. #if (!defined(SFX) && !defined(FUNZIP))
  1463. int    explode                   OF((__GPRO));                  /* explode.c */
  1464. #endif
  1465. int    huft_free                 OF((struct huft *t));          /* inflate.c */
  1466. int    huft_build                OF((__GPRO__ ZCONST unsigned *b, unsigned n,
  1467.                                      unsigned s, ZCONST ush *d, ZCONST ush *e,
  1468.                                      struct huft **t, int *m));
  1469. #ifdef USE_ZLIB
  1470.    int    UZinflate              OF((__GPRO));                  /* inflate.c */
  1471. #  define inflate_free(x)        inflateEnd(&((Uz_Globs *)(&G))->dstrm)
  1472. #else
  1473.    int    inflate                OF((__GPRO));                  /* inflate.c */
  1474.    int    inflate_free           OF((__GPRO));                  /* inflate.c */
  1475. #endif /* ?USE_ZLIB */
  1476. #if (!defined(SFX) && !defined(FUNZIP))
  1477. void   unreduce                  OF((__GPRO));                 /* unreduce.c */
  1478. /* static void  LoadFollowers    OF((__GPRO__ f_array *follower, uch *Slen));
  1479.                                                                 * unreduce.c */
  1480. int    unshrink                  OF((__GPRO));                 /* unshrink.c */
  1481. /* static void  partial_clear    OF((__GPRO));                  * unshrink.c */
  1482. #endif /* !SFX && !FUNZIP */
  1483. /*---------------------------------------------------------------------------
  1484.     Internal API functions (only included in DLL versions):
  1485.   ---------------------------------------------------------------------------*/
  1486. #ifdef DLL
  1487.    void     setFileNotFound       OF((__GPRO));                     /* api.c */
  1488.    int      unzipToMemory         OF((__GPRO__ char *zip, char *file,
  1489.                                       UzpBuffer *retstr));          /* api.c */
  1490.    int      redirect_outfile      OF((__GPRO));                     /* api.c */
  1491.    int      writeToMemory         OF((__GPRO__ uch *rawbuf, ulg size));
  1492.    int      close_redirect        OF((__GPRO));                     /* api.c */
  1493.    /* this obsolescent entry point kept for compatibility: */
  1494.    int      UzpUnzip              OF((int argc, char **argv));/* use UzpMain */
  1495. #ifdef OS2DLL
  1496.    int      varmessage            OF((__GPRO__ uch *buf, ulg size));
  1497.    int      varputchar            OF((__GPRO__ int c));         /* rexxapi.c */
  1498.    int      finish_REXX_redirect  OF((__GPRO));                 /* rexxapi.c */
  1499. #endif
  1500. #ifdef API_DOC
  1501.    void     APIhelp               OF((__GPRO__ int argc, char **argv));
  1502. #endif                                                          /* apihelp.c */
  1503. #endif /* DLL */
  1504. /*---------------------------------------------------------------------------
  1505.     Acorn RISC OS-only functions:
  1506.   ---------------------------------------------------------------------------*/
  1507. #ifdef RISCOS
  1508.    int   isRISCOSexfield     OF((void *extra_field));             /* acorn.c */
  1509.    void  setRISCOSexfield    OF((char *path, void *extra_field)); /* acorn.c */
  1510.    void  printRISCOSexfield  OF((int isdir, void *extra_field));  /* acorn.c */
  1511. #endif
  1512. /*---------------------------------------------------------------------------
  1513.     Human68K-only functions:
  1514.   ---------------------------------------------------------------------------*/
  1515. #ifdef __human68k__
  1516.    void  InitTwentyOne       OF((void));
  1517. #endif
  1518. /*---------------------------------------------------------------------------
  1519.     Macintosh-only functions:
  1520.   ---------------------------------------------------------------------------*/
  1521. #ifdef MACOS
  1522.    void    screenOpen        OF((char *));                    /* macscreen.c */
  1523.    void    screenControl     OF((char *, int));               /* macscreen.c */
  1524.    void    screenDump        OF((char *, long));              /* macscreen.c */
  1525.    void    screenUpdate      OF((WindowPtr));                 /* macscreen.c */
  1526.    void    screenClose       OF((void));                      /* macscreen.c */
  1527.    int     macgetch          OF((void));                      /* macscreen.c */
  1528.    int     macmkdir     OF((char *));                               /* mac.c */
  1529.    short   macopen      OF((char *, short));                        /* mac.c */
  1530.    short   maccreat     OF((char *));                               /* mac.c */
  1531.    short   macread      OF((short, char *, unsigned));              /* mac.c */
  1532.    long    macwrite     OF((short, char *, unsigned));              /* mac.c */
  1533.    short   macclose     OF((short));                                /* mac.c */
  1534.    long    maclseek     OF((short, long, short));                   /* mac.c */
  1535.    char   *macfgets     OF((char *, int, FILE *));                  /* mac.c */
  1536.    int     macfprintf   OF((FILE *, char *, ...));                  /* mac.c */
  1537.    int     macprintf    OF((char *, ...));                          /* mac.c */
  1538. #endif
  1539. /*---------------------------------------------------------------------------
  1540.     MSDOS-only functions:
  1541.   ---------------------------------------------------------------------------*/
  1542. #if (defined(MSDOS) && (defined(__GO32__) || defined(__EMX__)))
  1543.    unsigned _dos_getcountryinfo(void *);                          /* msdos.c */
  1544. #if (!defined(__DJGPP__) || (__DJGPP__ < 2))
  1545.    unsigned _dos_setftime(int, unsigned short, unsigned short);   /* msdos.c */
  1546.    unsigned _dos_setfileattr(char *, unsigned);                   /* msdos.c */
  1547.    unsigned _dos_creat(char *, unsigned, int *);                  /* msdos.c */
  1548.    void _dos_getdrive(unsigned *);                                /* msdos.c */
  1549.    unsigned _dos_close(int);                                      /* msdos.c */
  1550. #endif /* !__DJGPP__ || (__DJGPP__ < 2) */
  1551. #endif
  1552. /*---------------------------------------------------------------------------
  1553.     OS/2-only functions:
  1554.   ---------------------------------------------------------------------------*/
  1555. #ifdef OS2   /* GetFileTime conflicts with something in Win32 header files */
  1556. #if (defined(REENTRANT) && defined(USETHREADID))
  1557.    ulg   GetThreadId          OF((void));
  1558. #endif
  1559.    int   GetCountryInfo       OF((void));                           /* os2.c */
  1560.    long  GetFileTime          OF((ZCONST char *name));              /* os2.c */
  1561. /* static void  SetPathAttrTimes OF((__GPRO__ int flags, int dir));    os2.c */
  1562. /* static int   SetEAs        OF((__GPRO__ const char *path,
  1563.                                   void *eablock));                     os2.c */
  1564. /* static int   SetACL        OF((__GPRO__ const char *path,
  1565.                                   void *eablock));                     os2.c */
  1566. /* static int   IsFileNameValid OF((const char *name));                os2.c */
  1567. /* static void  map2fat       OF((char *pathcomp, char **pEndFAT));    os2.c */
  1568. /* static int   SetLongNameEA OF((char *name, char *longname));        os2.c */
  1569. /* static void  InitNLS       OF((void));                              os2.c */
  1570.    int   IsUpperNLS           OF((int nChr));                       /* os2.c */
  1571.    int   ToLowerNLS           OF((int nChr));                       /* os2.c */
  1572.    void  DebugMalloc          OF((void));                           /* os2.c */
  1573. #endif
  1574. /*---------------------------------------------------------------------------
  1575.     QDOS-only functions:
  1576.   ---------------------------------------------------------------------------*/
  1577. #ifdef QDOS
  1578.    int    QMatch              (uch, uch);
  1579.    void   QFilename           (__GPRO__ char *);
  1580.    char  *Qstrfix             (char *);
  1581.    int    QReturn             (int zip_error);
  1582. #endif
  1583. /*---------------------------------------------------------------------------
  1584.     TOPS20-only functions:
  1585.   ---------------------------------------------------------------------------*/
  1586. #ifdef TOPS20
  1587.    int    upper               OF((char *s));                     /* tops20.c */
  1588.    int    enquote             OF((char *s));                     /* tops20.c */
  1589.    int    dequote             OF((char *s));                     /* tops20.c */
  1590.    int    fnlegal             OF(()); /* error if prototyped? */ /* tops20.c */
  1591. #endif
  1592. /*---------------------------------------------------------------------------
  1593.     VM/CMS- and MVS-only functions:
  1594.   ---------------------------------------------------------------------------*/
  1595. #ifdef CMS_MVS
  1596.    extent getVMMVSexfield     OF((char *type, uch *ef_block, unsigned datalen));
  1597.    FILE  *vmmvs_open_infile   OF((__GPRO));                       /* vmmvs.c */
  1598.    void   close_infile        OF((__GPRO));                       /* vmmvs.c */
  1599. #endif
  1600. /*---------------------------------------------------------------------------
  1601.     VMS-only functions:
  1602.   ---------------------------------------------------------------------------*/
  1603. #ifdef VMS
  1604.    int    check_format        OF((__GPRO));                         /* vms.c */
  1605. /* int    open_outfile        OF((__GPRO));           * (see fileio.c) vms.c */
  1606. /* int    flush               OF((__GPRO__ uch *rawbuf, unsigned size,
  1607.                                   int final_flag));   * (see fileio.c) vms.c */
  1608. #ifdef RETURN_CODES
  1609.    void   return_VMS          OF((__GPRO__ int zip_error));         /* vms.c */
  1610. #else
  1611.    void   return_VMS          OF((int zip_error));                  /* vms.c */
  1612. #endif
  1613. #ifdef VMSCLI
  1614.    ulg    vms_unzip_cmdline   OF((int *, char ***));            /* cmdline.c */
  1615.    int    VMSCLI_usage        OF((__GPRO__ int error));         /* cmdline.c */
  1616. #endif
  1617. #endif
  1618. /*---------------------------------------------------------------------------
  1619.     WIN32-only functions:
  1620.   ---------------------------------------------------------------------------*/
  1621. #ifdef WIN32
  1622.    int   IsWinNT        OF((void));                               /* win32.c */
  1623. #ifdef NTSD_EAS
  1624.    void  process_defer_NT     OF((__GPRO));                       /* win32.c */
  1625.    int   test_NTSD      OF((__GPRO__ uch *eb, unsigned eb_size,
  1626.                             uch *eb_ucptr, ulg eb_ucsize));       /* win32.c */
  1627. #  define TEST_NTSD     test_NTSD
  1628. #endif
  1629. #ifdef W32_STAT_BANDAID
  1630.    int   zstat_win32    OF((__W32STAT_GLOBALS__
  1631.                             const char *path, struct stat *buf)); /* win32.c */
  1632. #endif
  1633. #endif
  1634. /*---------------------------------------------------------------------------
  1635.     Miscellaneous/shared functions:
  1636.   ---------------------------------------------------------------------------*/
  1637. Uz_Globs *globalsCtor    OF((void));                            /* globals.c */
  1638. void     envargs         OF((__GPRO__ int *Pargc, char ***Pargv,
  1639.                              ZCONST char *envstr, ZCONST char *envstr2));
  1640.                                                                 /* envargs.c */
  1641. void     mksargs         OF((int *argcp, char ***argvp));       /* envargs.c */
  1642. int      match           OF((ZCONST char *s, ZCONST char *p,
  1643.                              int ic));                            /* match.c */
  1644. int      iswild          OF((ZCONST char *p));                    /* match.c */
  1645. #ifdef DYNALLOC_CRCTAB
  1646.    void     free_crc_table  OF((void));                          /* crctab.c */
  1647. #endif
  1648. #ifndef USE_ZLIB
  1649.    ZCONST ulg near *get_crc_table  OF((void));         /* funzip.c, crctab.c */
  1650.    ulg      crc32           OF((ulg crc, ZCONST uch *buf, extent len));
  1651. #endif /* !USE_ZLIB */                        /* assembler source or crc32.c */
  1652. int      dateformat      OF((void));              /* currently, only msdos.c */
  1653. #ifndef WINDLL
  1654.    void  version         OF((__GPRO));                              /* local */
  1655. #endif
  1656. int      mapattr         OF((__GPRO));                              /* local */
  1657. int      mapname         OF((__GPRO__ int renamed));                /* local */
  1658. int      checkdir        OF((__GPRO__ char *pathcomp, int flag));   /* local */
  1659. char    *do_wild         OF((__GPRO__ char *wildzipfn));            /* local */
  1660. char    *GetLoadPath     OF((__GPRO));                              /* local */
  1661. #if (defined(MORE) && (defined(UNIX) || defined(VMS) || defined(__BEOS__)))
  1662.    int screenlines       OF((void));                                /* local */
  1663. #endif
  1664. #ifndef MTS /* macro in MTS */
  1665.    void  close_outfile   OF((__GPRO));                              /* local */
  1666. #endif
  1667. #ifdef SET_DIR_ATTRIB
  1668.    int   set_direc_attribs  OF((__GPRO__ dirtime *d));              /* local */
  1669. #endif
  1670. #ifdef TIMESTAMP
  1671. # ifdef WIN32
  1672.    int   stamp_file      OF((__GPRO__
  1673.                              ZCONST char *fname, time_t modtime));  /* local */
  1674. # else
  1675.    int   stamp_file      OF((ZCONST char *fname, time_t modtime));  /* local */
  1676. # endif
  1677. #endif
  1678. #ifdef SYSTEM_SPECIFIC_CTOR
  1679.    void  SYSTEM_SPECIFIC_CTOR   OF((__GPRO));                       /* local */
  1680. #endif
  1681. /************/
  1682. /*  Macros  */
  1683. /************/
  1684. #ifndef MAX
  1685. #  define MAX(a,b)   ((a) > (b) ? (a) : (b))
  1686. #endif
  1687. #ifndef MIN
  1688. #  define MIN(a,b)   ((a) < (b) ? (a) : (b))
  1689. #endif
  1690. #ifdef DEBUG
  1691. #  define Trace(x)   fprintf x
  1692. #else
  1693. #  define Trace(x)
  1694. #endif
  1695. #ifdef DEBUG_TIME
  1696. #  define TTrace(x)  fprintf x
  1697. #else
  1698. #  define TTrace(x)
  1699. #endif
  1700. #ifdef NO_DEBUG_IN_MACROS
  1701. #  define MTrace(x)
  1702. #else
  1703. #  define MTrace(x)  Trace(x)
  1704. #endif
  1705. #if (defined(UNIX) || defined(T20_VMS)) /* generally old systems */
  1706. #  define ToLower(x)   ((char)(isupper((int)x)? tolower((int)x) : x))
  1707. #else
  1708. #  define ToLower      tolower          /* assumed "smart"; used in match() */
  1709. #endif
  1710. #ifdef USE_STRM_INPUT
  1711.    /* ``Replace'' the unbuffered UNIX style I/O function with similar
  1712.     * standard C functions from <stdio.h>.
  1713.     */
  1714. #  define read(fd,buf,n) fread((buf),1,(n),(FILE *)(fd))
  1715. #  define lseek(fd,o,w) fseek((FILE *)(fd),(o),(w))
  1716. #  define close(fd) fclose((FILE *)(fd))
  1717. #endif /* USE_STRM_INPUT */
  1718. /* The return value of the Info() "macro function" is never checked in
  1719.  * UnZip. Otherwise, to get the same behaviour as for (*G.message)(), the
  1720.  * Info() definition for "FUNZIP" would have to be corrected:
  1721.  * #define Info(buf,flag,sprf_arg) 
  1722.  *      (fprintf((flag)&1? stderr : stdout, 
  1723.  *               (char *)(sprintf sprf_arg, (buf))) == EOF)
  1724.  */
  1725. #ifndef Info   /* may already have been defined for redirection */
  1726. #  ifdef FUNZIP
  1727. #    define Info(buf,flag,sprf_arg) 
  1728.      fprintf((flag)&1? stderr : stdout, (char *)(sprintf sprf_arg, (buf)))
  1729. #  else
  1730. #    ifdef INT_SPRINTF  /* optimized version for "int sprintf()" flavour */
  1731. #      define Info(buf,flag,sprf_arg) 
  1732.        (*G.message)((zvoid *)&G, (uch *)(buf), (ulg)sprintf sprf_arg, (flag))
  1733. #    else          /* generic version, does not use sprintf() return value */
  1734. #      define Info(buf,flag,sprf_arg) 
  1735.        (*G.message)((zvoid *)&G, (uch *)(buf), 
  1736.                      (ulg)(sprintf sprf_arg, strlen((char *)(buf))), (flag))
  1737. #    endif
  1738. #  endif
  1739. #endif /* !Info */
  1740. /*  The following macros wrappers around the fnfilter function are used many
  1741.  *  times to prepare archive entry names or name components for displaying
  1742.  *  listings and (warning/error) messages. They use sections in the upper half
  1743.  *  of 'slide' as buffer, since their output is normally fed through the
  1744.  *  Info() macro with 'slide' (the start of this area) as message buffer.
  1745.  */
  1746. #define FnFilter1(fname)  fnfilter((fname), slide + (WSIZE>>1))
  1747. #define FnFilter2(fname)  fnfilter((fname), slide + ((WSIZE>>1) + (WSIZE>>2)))
  1748. #ifndef FUNZIP   /* used only in inflate.c */
  1749. #  define MESSAGE(str,len,flag)  (*G.message)((zvoid *)&G,(str),(len),(flag))
  1750. #endif
  1751. #if 0            /* Optimization: use the (const) result of crc32(0L,NULL,0) */
  1752. #  define CRCVAL_INITIAL  crc32(0L, NULL, 0)
  1753. #else
  1754. #  define CRCVAL_INITIAL  0L
  1755. #endif
  1756. #ifndef TEST_NTSD               /* "NTSD valid?" checking function */
  1757. #  define TEST_NTSD     NULL    /*   ... is not available */
  1758. #endif
  1759. /*
  1760.  *  Seek to the block boundary of the block which includes abs_offset,
  1761.  *  then read block into input buffer and set pointers appropriately.
  1762.  *  If block is already in the buffer, just set the pointers.  This macro
  1763.  *  is used by uz_end_central (process.c), zi_end_central (zipinfo.c) and
  1764.  *  do_string (fileio.c).  A slightly modified version is embedded within
  1765.  *  extract_or_test_files (extract.c).  readbyte() and readbuf() (fileio.c)
  1766.  *  are compatible.  NOTE THAT abs_offset is intended to be the "proper off-
  1767.  *  set" (i.e., if there were no extra bytes prepended); cur_zipfile_bufstart
  1768.  *  contains the corrected offset.
  1769.  *
  1770.  *  Since ZLSEEK is never used during decompression, it is safe to use the
  1771.  *  slide[] buffer for the error message.
  1772.  *
  1773.  *  The awkward "%cbs_offset" construct is provided for the obnoxious Solaris
  1774.  *  compiler, which wants to do macro substitution inside strings.
  1775.  */
  1776. #ifndef ZLSEEK
  1777. #  ifdef USE_STRM_INPUT
  1778. #    define _ZLS_RELOAD(abs_offset) {
  1779.          MTrace((stderr, "ZLSEEK: %cbs_offset = %ld, G.extra_bytes = %ldn",
  1780.            'a', (abs_offset), G.extra_bytes));
  1781.          fseek(G.zipfd,(LONGINT)bufstart,SEEK_SET);
  1782.          G.cur_zipfile_bufstart = ftell(G.zipfd);
  1783.          MTrace((stderr,
  1784.            "       request = %ld, (abs+extra) = %ld, inbuf_offset = %ldn",
  1785.            request, ((abs_offset)+G.extra_bytes), inbuf_offset));
  1786.          MTrace((stderr, "       bufstart = %ld, cur_zipfile_bufstart = %ldn",
  1787.            bufstart, G.cur_zipfile_bufstart));
  1788.          if ((G.incnt = fread((char *)G.inbuf,1,INBUFSIZ,G.zipfd)) <= 0)
  1789.              return(PK_EOF);
  1790.          G.inptr = G.inbuf + (int)inbuf_offset;
  1791.          G.incnt -= (int)inbuf_offset;
  1792.      }
  1793. #  else /* !USE_STRM_INPUT */
  1794. #    define _ZLS_RELOAD(abs_offset) {
  1795.          MTrace((stderr, "ZLSEEK: %cbs_offset = %ld, G.extra_bytes = %ldn",
  1796.            'a', (abs_offset), G.extra_bytes));
  1797.          G.cur_zipfile_bufstart = lseek(G.zipfd,(LONGINT)bufstart,SEEK_SET);
  1798.          MTrace((stderr,
  1799.            "       request = %ld, (abs+extra) = %ld, inbuf_offset = %ldn",
  1800.            request, ((abs_offset)+G.extra_bytes), inbuf_offset));
  1801.          MTrace((stderr, "       bufstart = %ld, cur_zipfile_bufstart = %ldn",
  1802.            bufstart, G.cur_zipfile_bufstart));
  1803.          if ((G.incnt = read(G.zipfd,(char *)G.inbuf,INBUFSIZ)) <= 0)
  1804.              return(PK_EOF);
  1805.          G.inptr = G.inbuf + (int)inbuf_offset;
  1806.          G.incnt -= (int)inbuf_offset;
  1807.      }
  1808. #  endif /* ?USE_STRM_INPUT */
  1809. #  define ZLSEEK(abs_offset) {
  1810.        LONGINT request = (abs_offset) + G.extra_bytes;
  1811.        LONGINT inbuf_offset = request % INBUFSIZ;
  1812.        LONGINT bufstart = request - inbuf_offset;
  1813.        if (request < 0) {
  1814.            Info(slide, 1, ((char *)slide, LoadFarStringSmall(SeekMsg),
  1815.              G.zipfn, LoadFarString(ReportMsg)));
  1816.            return(PK_BADERR);
  1817.        } else if (bufstart != G.cur_zipfile_bufstart)
  1818.            _ZLS_RELOAD(abs_offset)
  1819.        else {
  1820.            G.incnt += (G.inptr-G.inbuf) - (int)inbuf_offset;
  1821.            G.inptr = G.inbuf + (int)inbuf_offset;
  1822.        }
  1823.    }
  1824. #endif /* !ZLSEEK */
  1825. #define SKIP_(length) if(length&&((error=do_string(__G__ length,SKIP))!=0))
  1826.   {error_in_archive=error; if(error>1) return error;}
  1827. /*
  1828.  *  Skip a variable-length field, and report any errors.  Used in zipinfo.c
  1829.  *  and unzip.c in several functions.
  1830.  *
  1831.  *  macro SKIP_(length)
  1832.  *      ush length;
  1833.  *  {
  1834.  *      if (length && ((error = do_string(length, SKIP)) != 0)) {
  1835.  *          error_in_archive = error;   /-* might be warning *-/
  1836.  *          if (error > 1)              /-* fatal *-/
  1837.  *              return (error);
  1838.  *      }
  1839.  *  }
  1840.  *
  1841.  */
  1842. #ifdef FUNZIP
  1843. #  define FLUSH(w)  flush(__G__ (ulg)(w))
  1844. #  define NEXTBYTE  getc(G.in)   /* redefined in crypt.h if full version */
  1845. #else
  1846. #  define FLUSH(w)  if (G.mem_mode) memflush(__G__ redirSlide,(ulg)(w)); 
  1847.      else flush(__G__ redirSlide,(ulg)(w),0)
  1848. #  define NEXTBYTE  (--G.incnt >= 0 ? (int)(*G.inptr++) : readbyte(__G))
  1849. #endif
  1850. #define READBITS(nbits,zdest) {if(nbits>G.bits_left) {int temp; G.zipeof=1;
  1851.   while (G.bits_left<=8*(int)(sizeof(G.bitbuf)-1) && (temp=NEXTBYTE)!=EOF) {
  1852.   G.bitbuf|=(ulg)temp<<G.bits_left; G.bits_left+=8; G.zipeof=0;}}
  1853.   zdest=(shrint)((ush)G.bitbuf&mask_bits[nbits]);G.bitbuf>>=nbits;
  1854.   G.bits_left-=nbits;}
  1855. /*
  1856.  * macro READBITS(nbits,zdest)    * only used by unreduce and unshrink *
  1857.  *  {
  1858.  *      if (nbits > G.bits_left) {  * fill G.bitbuf, 8*sizeof(ulg) bits *
  1859.  *          int temp;
  1860.  *
  1861.  *          G.zipeof = 1;
  1862.  *          while (G.bits_left <= 8*(int)(sizeof(G.bitbuf)-1) &&
  1863.  *                 (temp = NEXTBYTE) != EOF) {
  1864.  *              G.bitbuf |= (ulg)temp << G.bits_left;
  1865.  *              G.bits_left += 8;
  1866.  *              G.zipeof = 0;
  1867.  *          }
  1868.  *      }
  1869.  *      zdest = (shrint)((ush)G.bitbuf & mask_bits[nbits]);
  1870.  *      G.bitbuf >>= nbits;
  1871.  *      G.bits_left -= nbits;
  1872.  *  }
  1873.  *
  1874.  */
  1875. /* GRR:  should change name to STRLOWER and use StringLower if possible */
  1876. /*
  1877.  *  Copy the zero-terminated string in str1 into str2, converting any
  1878.  *  uppercase letters to lowercase as we go.  str2 gets zero-terminated
  1879.  *  as well, of course.  str1 and str2 may be the same character array.
  1880.  */
  1881. #ifdef __human68k__
  1882. #  define TOLOWER(str1, str2) 
  1883.    { 
  1884.        char *p=(str1), *q=(str2); 
  1885.        uch c; 
  1886.        while ((c = *p++) != '') { 
  1887.            if (iskanji(c)) { 
  1888.                if (*p == '') 
  1889.                    break; 
  1890.                *q++ = c; 
  1891.                *q++ = *p++; 
  1892.            } else 
  1893.                *q++ = isupper(c) ? tolower(c) : c; 
  1894.        } 
  1895.        *q = ''; 
  1896.    }
  1897. #else
  1898. #  define TOLOWER(str1, str2) 
  1899.    { 
  1900.        char  *p, *q; 
  1901.        p = (str1) - 1; 
  1902.        q = (str2); 
  1903.        while (*++p) 
  1904.            *q++ = (char)(isupper((int)(*p))? tolower((int)(*p)) : *p); 
  1905.        *q = ''; 
  1906.    }
  1907. #endif
  1908. /*
  1909.  *  NOTES:  This macro makes no assumptions about the characteristics of
  1910.  *    the tolower() function or macro (beyond its existence), nor does it
  1911.  *    make assumptions about the structure of the character set (i.e., it
  1912.  *    should work on EBCDIC machines, too).  The fact that either or both
  1913.  *    of isupper() and tolower() may be macros has been taken into account;
  1914.  *    watch out for "side effects" (in the C sense) when modifying this
  1915.  *    macro.
  1916.  */
  1917. #ifndef foreign
  1918. #  define foreign(c)  (c)
  1919. #endif
  1920. #ifndef native
  1921. #  define native(c)   (c)
  1922. #  define A_TO_N(str1)
  1923. #else
  1924. #  ifndef NATIVE
  1925. #    define NATIVE     "native chars"
  1926. #  endif
  1927. #  define A_TO_N(str1) {register uch *p;
  1928.      for (p=(uch *)(str1); *p; p++) *p=native(*p);}
  1929. #endif
  1930. /*
  1931.  *  Translate the zero-terminated string in str1 from ASCII to the native
  1932.  *  character set. The translation is performed in-place and uses the
  1933.  *  "native" macro to translate each character.
  1934.  *
  1935.  *  NOTE:  Using the "native" macro means that is it the only part of unzip
  1936.  *    which knows which translation table (if any) is actually in use to
  1937.  *    produce the native character set.  This makes adding new character set
  1938.  *    translation tables easy, insofar as all that is needed is an appropriate
  1939.  *    "native" macro definition and the translation table itself.  Currently,
  1940.  *    the only non-ASCII native character set implemented is EBCDIC, but this
  1941.  *    may not always be so.
  1942.  */
  1943. /* default setup for internal codepage: assume ISO 8859-1 compatibility!! */
  1944. #if (!defined(NATIVE) && !defined(CRTL_CP_IS_ISO) && !defined(CRTL_CP_IS_OEM))
  1945. #  define CRTL_CP_IS_ISO
  1946. #endif
  1947. /*  Translate "extended ASCII" chars (OEM coding for DOS and OS/2; else
  1948.  *  ISO-8859-1 [ISO Latin 1, Win Ansi,...]) into the internal "native"
  1949.  *  code page.  As with A_TO_N(), conversion is done in place.
  1950.  */
  1951. #ifndef _ISO_INTERN
  1952. #  ifdef CRTL_CP_IS_OEM
  1953. #    ifndef IZ_ISO2OEM_ARRAY
  1954. #      define IZ_ISO2OEM_ARRAY
  1955. #    endif
  1956. #    define _ISO_INTERN(str1) {register uch *p;
  1957.        for (p=(uch *)(str1); *p; p++)
  1958.          *p = native((*p & 0x80) ? iso2oem[*p & 0x7f] : *p);}
  1959. #  else
  1960. #    define _ISO_INTERN(str1)   A_TO_N(str1)
  1961. #  endif
  1962. #endif
  1963. #ifndef _OEM_INTERN
  1964. #  ifdef CRTL_CP_IS_OEM
  1965. #    define _OEM_INTERN(str1)   A_TO_N(str1)
  1966. #  else
  1967. #    ifndef IZ_OEM2ISO_ARRAY
  1968. #      define IZ_OEM2ISO_ARRAY
  1969. #    endif
  1970. #    define _OEM_INTERN(str1) {register uch *p;
  1971.        for (p=(uch *)(str1); *p; p++)
  1972.          *p = native((*p & 0x80) ? oem2iso[*p & 0x7f] : *p);}
  1973. #  endif
  1974. #endif
  1975. #ifndef STR_TO_ISO
  1976. #  ifdef CRTL_CP_IS_ISO
  1977. #    define STR_TO_ISO          strcpy
  1978. #  else
  1979. #    define STR_TO_ISO          str2iso
  1980. #    define NEED_STR2ISO
  1981. #  endif
  1982. #endif
  1983. #ifndef STR_TO_OEM
  1984. #  ifdef CRTL_CP_IS_OEM
  1985. #    define STR_TO_OEM          strcpy
  1986. #  else
  1987. #    define STR_TO_OEM          str2oem
  1988. #    define NEED_STR2OEM
  1989. #  endif
  1990. #endif
  1991. #if (!defined(INTERN_TO_ISO) && !defined(ASCII2ISO))
  1992. #  ifdef CRTL_CP_IS_OEM
  1993.      /* know: "ASCII" is "OEM" */
  1994. #    define ASCII2ISO(c) (((c) & 0x80) ? oem2iso[(c) & 0x7f] : (c))
  1995. #    if (defined(NEED_STR2ISO) && !defined(CRYP_USES_OEM2ISO))
  1996. #      define CRYP_USES_OEM2ISO
  1997. #    endif
  1998. #  else
  1999.      /* assume: "ASCII" is "ISO-ANSI" */
  2000. #    define ASCII2ISO(c) (c)
  2001. #  endif
  2002. #endif
  2003. #if (!defined(INTERN_TO_OEM) && !defined(ASCII2OEM))
  2004. #  ifdef CRTL_CP_IS_OEM
  2005.      /* know: "ASCII" is "OEM" */
  2006. #    define ASCII2OEM(c) (c)
  2007. #  else
  2008.      /* assume: "ASCII" is "ISO-ANSI" */
  2009. #    define ASCII2OEM(c) (((c) & 0x80) ? iso2oem[(c) & 0x7f] : (c))
  2010. #    if (defined(NEED_STR2OEM) && !defined(CRYP_USES_ISO2OEM))
  2011. #      define CRYP_USES_ISO2OEM
  2012. #    endif
  2013. #  endif
  2014. #endif
  2015. /* codepage conversion setup for testp() in crypt.c */
  2016. #ifdef CRTL_CP_IS_ISO
  2017. #  ifndef STR_TO_CP2
  2018. #    define STR_TO_CP2  STR_TO_OEM
  2019. #  endif
  2020. #else
  2021. #  ifdef CRTL_CP_IS_OEM
  2022. #    ifndef STR_TO_CP2
  2023. #      define STR_TO_CP2  STR_TO_ISO
  2024. #    endif
  2025. #  else /* native internal CP is neither ISO nor OEM */
  2026. #    ifndef STR_TO_CP1
  2027. #      define STR_TO_CP1  STR_TO_ISO
  2028. #    endif
  2029. #    ifndef STR_TO_CP2
  2030. #      define STR_TO_CP2  STR_TO_OEM
  2031. #    endif
  2032. #  endif
  2033. #endif
  2034. /* Convert filename (and file comment string) into "internal" charset.
  2035.  * This macro assumes that Zip entry filenames are coded in OEM (IBM DOS)
  2036.  * codepage when made on
  2037.  *  -> DOS (this includes 16-bit Windows 3.1)  (FS_FAT_)
  2038.  *  -> OS/2                                    (FS_HPFS_)
  2039.  *  -> Win95/WinNT with Nico Mak's WinZip      (FS_NTFS_ && hostver == "5.0")
  2040.  *
  2041.  * All other ports are assumed to code zip entry filenames in ISO 8859-1.
  2042.  */
  2043. #ifndef Ext_ASCII_TO_Native
  2044. #  define Ext_ASCII_TO_Native(string, hostnum, hostver) 
  2045.     if ((hostnum) == FS_FAT_ || (hostnum) == FS_HPFS_ || 
  2046.         ((hostnum) == FS_NTFS_ && (hostver) == 50)) { 
  2047.         _OEM_INTERN((string)); 
  2048.     } else { 
  2049.         _ISO_INTERN((string)); 
  2050.     }
  2051. #endif
  2052. /**********************/
  2053. /*  Global constants  */
  2054. /**********************/
  2055.    extern ZCONST ush near  mask_bits[];
  2056.    extern ZCONST char *fnames[2];
  2057. #ifdef EBCDIC
  2058.    extern ZCONST uch ebcdic[];
  2059. #endif
  2060. #ifdef IZ_ISO2OEM_ARRAY
  2061.    extern ZCONST uch Far iso2oem[];
  2062. #endif
  2063. #ifdef IZ_OEM2ISO_ARRAY
  2064.    extern ZCONST uch Far oem2iso[];
  2065. #endif
  2066.    extern ZCONST char Far  VersionDate[];
  2067.    extern ZCONST char Far  CentSigMsg[];
  2068.    extern ZCONST char Far  EndSigMsg[];
  2069.    extern ZCONST char Far  SeekMsg[];
  2070.    extern ZCONST char Far  FilenameNotMatched[];
  2071.    extern ZCONST char Far  ExclFilenameNotMatched[];
  2072.    extern ZCONST char Far  ReportMsg[];
  2073. #ifndef SFX
  2074.    extern ZCONST char Far  CompiledWith[];
  2075. #endif /* !SFX */
  2076. /***********************************/
  2077. /*  Global (shared?) RTL variables */
  2078. /***********************************/
  2079. #ifdef DECLARE_ERRNO
  2080.    extern int             errno;
  2081. #endif
  2082. #endif /* !__unzpriv_h */