Query: zip_name_locate
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ZIP_NAME_LOCATE(3) Library Functions Manual ZIP_NAME_LOCATE(3)NAMEzip_name_locate - get index of file by nameLIBRARYlibzip (-lzip)SYNOPSIS#include <zip.h> int zip_name_locate(struct zip *archive, const char *fname, int flags);DESCRIPTIONThe zip_name_locate function returns the index of the file named fname in archive. If archive does not contain a file with that name, -1 is returned. The are specified by or'ing the following values, or 0 for none of them. ZIP_FL_NOCASE Ignore case distinctions. ZIP_FL_NODIR Ignore directory part of file name in archive.RETURN VALUESzip_name_locate returns the index of the file named fname or -1, if archive does not contain an entry of that name.ERRORSThe zip_name_locate function fails and sets the error information to ZIP_ER_NOENT if no entry of the name fname is found in the archive. If one of the arguments is invalid, the error information is set to ZIP_ER_INVAL.SEE ALSOlibzip(3), zip_get_name(3)AUTHORSDieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at> NiH October 4, 2006 ZIP_NAME_LOCATE(3)