| 1 | /* minigzip.c -- simulate gzip using the zlib compression library
|
|---|
| 2 | * Copyright (C) 1995-2002 Jean-loup Gailly.
|
|---|
| 3 | * For conditions of distribution and use, see copyright notice in zlib.h
|
|---|
| 4 | */
|
|---|
| 5 |
|
|---|
| 6 | /*
|
|---|
| 7 | * minigzip is a minimal implementation of the gzip utility. This is
|
|---|
| 8 | * only an example of using zlib and isn't meant to replace the
|
|---|
| 9 | * full-featured gzip. No attempt is made to deal with file systems
|
|---|
| 10 | * limiting names to 14 or 8+3 characters, etc... Error checking is
|
|---|
| 11 | * very limited. So use minigzip only for testing; use gzip for the
|
|---|
| 12 | * real thing. On MSDOS, use only on file names without extension
|
|---|
| 13 | * or in pipe mode.
|
|---|
| 14 | */
|
|---|
| 15 |
|
|---|
| 16 | /* @(#) $Id: minigzip.c,v 1.1.26.1 2002/03/11 22:18:19 tromey Exp $ */
|
|---|
| 17 |
|
|---|
| 18 | #include <stdio.h>
|
|---|
| 19 | #include "zlib.h"
|
|---|
| 20 |
|
|---|
| 21 | #ifdef STDC
|
|---|
| 22 | # include <string.h>
|
|---|
| 23 | # include <stdlib.h>
|
|---|
| 24 | #else
|
|---|
| 25 | extern void exit OF((int));
|
|---|
| 26 | #endif
|
|---|
| 27 |
|
|---|
| 28 | #ifdef USE_MMAP
|
|---|
| 29 | # include <sys/types.h>
|
|---|
| 30 | # include <sys/mman.h>
|
|---|
| 31 | # include <sys/stat.h>
|
|---|
|
|---|