zopen.h revision 92920
1129199Scognet/*
2129199Scognet * Copyright (C) 1996
3129199Scognet *	FreeBSD Inc. All rights reserved.
4129199Scognet *
5129199Scognet * Redistribution and use in source and binary forms, with or without
6129199Scognet * modification, are permitted provided that the following conditions
7129199Scognet * are met:
8129199Scognet * 1. Redistributions of source code must retain the above copyright
9129199Scognet *    notice, this list of conditions and the following disclaimer.
10129199Scognet * 2. Redistributions in binary form must reproduce the above copyright
11135670Scognet *    notice, this list of conditions and the following disclaimer in the
12129199Scognet *    documentation and/or other materials provided with the distribution.
13129199Scognet *
14129199Scognet * THIS SOFTWARE IS PROVIDED BY FreeBSD Inc. AND CONTRIBUTORS ``AS IS'' AND
15135670Scognet * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16129199Scognet * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17129199Scognet * ARE DISCLAIMED.  IN NO EVENT SHALL [your name] OR CONTRIBUTORS BE LIABLE
18129199Scognet * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19129199Scognet * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20152026Simp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21129199Scognet * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22129199Scognet * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23136910Sru * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24129199Scognet * SUCH DAMAGE.
25129199Scognet *
26129199Scognet * $FreeBSD: head/usr.bin/compress/zopen.h 92920 2002-03-22 01:22:50Z imp $
27129199Scognet */
28129199Scognet
29129199Scognet#ifndef _ZOPEN_H_
30129199Scognet#define _ZOPEN_H_
31129199Scognet
32129199ScognetFILE  *zopen(const char *, const char *, int);
33129199Scognet
34129199Scognet#endif /* _ZOPEN_H_ */
35129199Scognet