Updated some comments to be the same as documentation.

This commit is contained in:
Nathan Moinvaziri 2020-02-08 21:13:55 -08:00
parent 60a07e9c87
commit 9c5849f3fc
3 changed files with 4 additions and 4 deletions

View File

@ -179,7 +179,7 @@ int32_t mz_zip_locate_first_entry(void *handle, void *userdata, mz_zip_locate_en
/* Locate the first matching entry based on a match callback */ /* Locate the first matching entry based on a match callback */
int32_t mz_zip_locate_next_entry(void *handle, void *userdata, mz_zip_locate_entry_cb cb); int32_t mz_zip_locate_next_entry(void *handle, void *userdata, mz_zip_locate_entry_cb cb);
/* LOcate the next matching entry based on a match callback */ /* Locate the next matching entry based on a match callback */
/***************************************************************************/ /***************************************************************************/

View File

@ -844,7 +844,7 @@ int32_t mz_zip_reader_entry_save_buffer(void *handle, void *buf, int32_t len)
if (reader->file_info->uncompressed_size > INT32_MAX) if (reader->file_info->uncompressed_size > INT32_MAX)
return MZ_PARAM_ERROR; return MZ_PARAM_ERROR;
if (len != (int32_t)reader->file_info->uncompressed_size) if (len != (int32_t)reader->file_info->uncompressed_size)
return MZ_PARAM_ERROR; return MZ_BUF_ERROR;
/* Create a memory stream backed by our buffer and save to it */ /* Create a memory stream backed by our buffer and save to it */
mz_stream_mem_create(&mem_stream); mz_stream_mem_create(&mem_stream);

View File

@ -121,13 +121,13 @@ int32_t mz_zip_reader_get_raw(void *handle, uint8_t *raw);
/* Gets whether or not it should save the entry raw */ /* Gets whether or not it should save the entry raw */
int32_t mz_zip_reader_get_zip_cd(void *handle, uint8_t *zip_cd); int32_t mz_zip_reader_get_zip_cd(void *handle, uint8_t *zip_cd);
/* Gets whether or not the archive has zipped cd */ /* Gets whether or not the archive has a zipped central directory */
int32_t mz_zip_reader_get_comment(void *handle, const char **comment); int32_t mz_zip_reader_get_comment(void *handle, const char **comment);
/* Gets the comment for the central directory */ /* Gets the comment for the central directory */
void mz_zip_reader_set_encoding(void *handle, int32_t encoding); void mz_zip_reader_set_encoding(void *handle, int32_t encoding);
/* Sets whether or not it should support cp437 in zip file names */ /* Sets whether or not it should support a special character encoding in zip file names. */
void mz_zip_reader_set_sign_required(void *handle, uint8_t sign_required); void mz_zip_reader_set_sign_required(void *handle, uint8_t sign_required);
/* Sets whether or not it a signature is required */ /* Sets whether or not it a signature is required */