aboutsummaryrefslogtreecommitdiff
path: root/contrib/minizip/unzip.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/minizip/unzip.h')
-rw-r--r--contrib/minizip/unzip.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/minizip/unzip.h b/contrib/minizip/unzip.h
index 7b9884d..1410584 100644
--- a/contrib/minizip/unzip.h
+++ b/contrib/minizip/unzip.h
@@ -154,11 +154,11 @@ extern int ZEXPORT unzStringFileNameCompare(const char* fileName1,
154 const char* fileName2, 154 const char* fileName2,
155 int iCaseSensitivity); 155 int iCaseSensitivity);
156/* 156/*
157 Compare two filename (fileName1,fileName2). 157 Compare two filenames (fileName1,fileName2).
158 If iCaseSenisivity = 1, comparision is case sensitivity (like strcmp) 158 If iCaseSensitivity = 1, comparison is case sensitive (like strcmp)
159 If iCaseSenisivity = 2, comparision is not case sensitivity (like strcmpi 159 If iCaseSensitivity = 2, comparison is not case sensitive (like strcmpi
160 or strcasecmp) 160 or strcasecmp)
161 If iCaseSenisivity = 0, case sensitivity is defaut of your operating system 161 If iCaseSensitivity = 0, case sensitivity is default of your operating system
162 (like 1 on Unix, 2 on Windows) 162 (like 1 on Unix, 2 on Windows)
163*/ 163*/
164 164
@@ -304,7 +304,7 @@ extern int ZEXPORT unzGetCurrentFileInfo(unzFile file,
304 uLong commentBufferSize); 304 uLong commentBufferSize);
305/* 305/*
306 Get Info about the current file 306 Get Info about the current file
307 if pfile_info!=NULL, the *pfile_info structure will contain somes info about 307 if pfile_info!=NULL, the *pfile_info structure will contain some info about
308 the current file 308 the current file
309 if szFileName!=NULL, the filemane string will be copied in szFileName 309 if szFileName!=NULL, the filemane string will be copied in szFileName
310 (fileNameBufferSize is the size of the buffer) 310 (fileNameBufferSize is the size of the buffer)
@@ -384,7 +384,7 @@ extern int ZEXPORT unzReadCurrentFile(unzFile file,
384 buf contain buffer where data must be copied 384 buf contain buffer where data must be copied
385 len the size of buf. 385 len the size of buf.
386 386
387 return the number of byte copied if somes bytes are copied 387 return the number of byte copied if some bytes are copied
388 return 0 if the end of file was reached 388 return 0 if the end of file was reached
389 return <0 with error code if there is an error 389 return <0 with error code if there is an error
390 (UNZ_ERRNO for IO error, or zLib error for uncompress error) 390 (UNZ_ERRNO for IO error, or zLib error for uncompress error)