Imported Upstream version 0.10.1
[platform/upstream/libzip.git] / man / zip_source_free.man
1 .\" zip_source_free.mdoc \-- free zip data source
2 .\" Copyright (C) 2004, 2005, 2006 Dieter Baron and Thomas Klausner
3 .\"
4 .\" This file is part of libzip, a library to manipulate ZIP archives.
5 .\" The authors can be contacted at <libzip@nih.at>
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in
14 .\"    the documentation and/or other materials provided with the
15 .\"    distribution.
16 .\" 3. The names of the authors may not be used to endorse or promote
17 .\"    products derived from this software without specific prior
18 .\"    written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
21 .\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
24 .\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
26 .\" GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
28 .\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
30 .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 .\"
32 .TH ZIP_SOURCE_FREE 3 "April 23, 2006" NiH
33 .SH "NAME"
34 zip_source_free \- free zip data source
35 .SH "LIBRARY"
36 libzip (-lzip)
37 .SH "SYNOPSIS"
38 #include <zip.h>
39 .PP
40 void
41 zip_source_free(struct zip_source *source);
42 .SH "DESCRIPTION"
43 The function
44 zip_source_free
45 frees the zip data source
46 \fBsource.\fR
47 If
48 \fBsource\fR
49 is
50 \fBNULL,\fR
51 it does nothing.
52 .PP
53 .I NOTE :
54 This function should not be called on a
55 \fBsource\fR
56 after it was used successfully in a
57 zip_add(3)
58 or
59 zip_replace(3)
60 call.
61 .SH "SEE ALSO"
62 libzip(3),
63 zip_source_buffer(3),
64 zip_source_file(3),
65 zip_source_filep(3),
66 zip_source_function(3),
67 zip_source_zip(3)
68 .SH "AUTHORS"
69
70 Dieter Baron <dillo@giga.or.at>
71 and
72 Thomas Klausner <tk@giga.or.at>