Thomas Klausner | 99de9b9 | 2008-06-04 10:36:44 +0200 | [diff] [blame] | 1 | .\" zip_get_archive_flag.mdoc -- get comment for file in zip |
Thomas Klausner | a1415de | 2015-04-29 15:36:30 +0200 | [diff] [blame] | 2 | .\" Copyright (C) 2008-2015 Dieter Baron and Thomas Klausner |
Thomas Klausner | 99de9b9 | 2008-06-04 10:36:44 +0200 | [diff] [blame] | 3 | .\" |
| 4 | .\" This file is part of libzip, a library to manipulate ZIP files. |
| 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 | .\" |
Thomas Klausner | 6d8ff24 | 2015-04-29 14:11:09 +0200 | [diff] [blame] | 32 | .Dd April 29, 2015 |
Thomas Klausner | 99de9b9 | 2008-06-04 10:36:44 +0200 | [diff] [blame] | 33 | .Dt ZIP_GET_ARCHIVE_FLAG 3 |
| 34 | .Os |
| 35 | .Sh NAME |
| 36 | .Nm zip_get_archive_flag |
| 37 | .Nd get status flags for zip |
| 38 | .Sh LIBRARY |
| 39 | libzip (-lzip) |
| 40 | .Sh SYNOPSIS |
| 41 | .In zip.h |
| 42 | .Ft int |
Dieter Baron | 1d9dfeb | 2014-09-28 23:02:54 +0200 | [diff] [blame] | 43 | .Fn zip_get_archive_flag "zip_t *archive" "zip_flags_t flag" "zip_flags_t flags" |
Thomas Klausner | 99de9b9 | 2008-06-04 10:36:44 +0200 | [diff] [blame] | 44 | .Sh DESCRIPTION |
| 45 | The |
| 46 | .Fn zip_get_archive_flag |
| 47 | function returns if the flag |
| 48 | .Ar flag |
| 49 | is set for the archive |
| 50 | .Ar archive . |
| 51 | The archive flags might have been changed with |
| 52 | .Fn zip_set_archive_flag ; |
| 53 | if |
| 54 | .Ar flags |
| 55 | is set to |
| 56 | .Dv ZIP_FL_UNCHANGED , |
| 57 | the original unchanged flags are tested. |
| 58 | .Pp |
| 59 | Supported flags are: |
Thomas Klausner | 6d8ff24 | 2015-04-29 14:11:09 +0200 | [diff] [blame] | 60 | .Bl -tag -width XZIPXAFLXRDONLYXXX |
| 61 | .It Dv ZIP_AFL_RDONLY |
| 62 | The archive is read-only. |
Thomas Klausner | 99de9b9 | 2008-06-04 10:36:44 +0200 | [diff] [blame] | 63 | .El |
| 64 | .Sh RETURN VALUES |
| 65 | .Fn zip_get_archive_flag |
| 66 | returns 1 if |
| 67 | .Ar flag |
| 68 | is set for |
| 69 | .Ar archive , |
Thomas Klausner | 174c0af | 2008-06-04 11:02:00 +0200 | [diff] [blame] | 70 | 0 if not, |
| 71 | and \-1 if an error occurred. |
Thomas Klausner | 99de9b9 | 2008-06-04 10:36:44 +0200 | [diff] [blame] | 72 | .Sh SEE ALSO |
| 73 | .Xr libzip 3 , |
| 74 | .Xr zip_set_archive_flag 3 |
| 75 | .Sh AUTHORS |
| 76 | .An -nosplit |
Thomas Klausner | 0acbab4 | 2013-07-28 23:29:08 +0200 | [diff] [blame] | 77 | .An Dieter Baron Aq Mt dillo@nih.at |
Thomas Klausner | 99de9b9 | 2008-06-04 10:36:44 +0200 | [diff] [blame] | 78 | and |
Thomas Klausner | 0acbab4 | 2013-07-28 23:29:08 +0200 | [diff] [blame] | 79 | .An Thomas Klausner Aq Mt tk@giga.or.at |