1ZIP_SET_FILE_COMMENT(3) BSD Library Functions Manual ZIP_SET_FILE_COMMENT(3)
2
4 zip_set_file_comment — set comment for file in zip (obsolete interface)
5
7 libzip (-lzip)
8
10 #include <zip.h>
11
12 int
13 zip_set_file_comment(zip_t *archive, zip_uint64_t index,
14 const char *comment, int len);
15
17 The zip_set_file_comment() function is the obsolete version of
18 zip_file_set_comment(3). The only differences are the type of the len
19 argument and the additional flags argument. zip_set_file_comment() is
20 the same as calling zip_file_set_comment(3) with an empty flags argument.
21
23 libzip(3), zip_file_set_comment(3)
24
26 zip_set_file_comment() was added in libzip 0.7. In libzip 0.10 the type
27 of index was changed from int to zip_uint64_t. It was deprecated in
28 libzip 0.11, use zip_file_set_comment() instead.
29
31 Dieter Baron <dillo@nih.at> and Thomas Klausner <tk@giga.or.at>
32
33BSD December 18, 2017 BSD