├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── PhigrosLibrary.md ├── README.md ├── avatar.txt ├── collection.tsv ├── difficulty.tsv ├── illustration.txt ├── info.tsv ├── libzip ├── .clang-format ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug-report.md │ │ ├── compile-error.md │ │ └── feature-request.md │ └── workflows │ │ ├── CIFuzz.yml │ │ ├── build.yml │ │ └── codeql-analysis.yml ├── API-CHANGES.md ├── AUTHORS ├── CMakeLists.txt ├── INSTALL.md ├── LICENSE ├── NEWS.md ├── README.md ├── SECURITY.md ├── THANKS ├── TODO.md ├── android │ ├── do.sh │ ├── docker │ │ └── Dockerfile │ └── readme.txt ├── appveyor.yml ├── cmake-compat │ ├── CMakePushCheckState.cmake │ ├── CheckLibraryExists.cmake │ ├── CheckSymbolExists.cmake │ ├── FindBZip2.cmake │ ├── FindGnuTLS.cmake │ ├── FindLibLZMA.cmake │ ├── FindPackageHandleStandardArgs.cmake │ ├── FindPackageMessage.cmake │ └── SelectLibraryConfigurations.cmake ├── cmake-config.h.in ├── cmake-zipconf.h.in ├── cmake │ ├── Dist.cmake │ ├── FindMbedTLS.cmake │ ├── FindNettle.cmake │ ├── Findzstd.cmake │ └── GenerateZipErrorStrings.cmake ├── examples │ ├── CMakeLists.txt │ ├── add-compressed-data.c │ ├── autoclose-archive.c │ ├── in-memory.c │ └── windows-open.c ├── lib │ ├── CMakeLists.txt │ ├── compat.h │ ├── zip.h │ ├── zip_add.c │ ├── zip_add_dir.c │ ├── zip_add_entry.c │ ├── zip_algorithm_bzip2.c │ ├── zip_algorithm_deflate.c │ ├── zip_algorithm_xz.c │ ├── zip_algorithm_zstd.c │ ├── zip_buffer.c │ ├── zip_close.c │ ├── zip_crypto.h │ ├── zip_crypto_commoncrypto.c │ ├── zip_crypto_commoncrypto.h │ ├── zip_crypto_gnutls.c │ ├── zip_crypto_gnutls.h │ ├── zip_crypto_mbedtls.c │ ├── zip_crypto_mbedtls.h │ ├── zip_crypto_openssl.c │ ├── zip_crypto_openssl.h │ ├── zip_crypto_win.c │ ├── zip_crypto_win.h │ ├── zip_delete.c │ ├── zip_dir_add.c │ ├── zip_dirent.c │ ├── zip_discard.c │ ├── zip_entry.c │ ├── zip_error.c │ ├── zip_error_clear.c │ ├── zip_error_get.c │ ├── zip_error_get_sys_type.c │ ├── zip_error_strerror.c │ ├── zip_error_to_str.c │ ├── zip_extra_field.c │ ├── zip_extra_field_api.c │ ├── zip_fclose.c │ ├── zip_fdopen.c │ ├── zip_file_add.c │ ├── zip_file_error_clear.c │ ├── zip_file_error_get.c │ ├── zip_file_get_comment.c │ ├── zip_file_get_external_attributes.c │ ├── zip_file_get_offset.c │ ├── zip_file_rename.c │ ├── zip_file_replace.c │ ├── zip_file_set_comment.c │ ├── zip_file_set_encryption.c │ ├── zip_file_set_external_attributes.c │ ├── zip_file_set_mtime.c │ ├── zip_file_strerror.c │ ├── zip_fopen.c │ ├── zip_fopen_encrypted.c │ ├── zip_fopen_index.c │ ├── zip_fopen_index_encrypted.c │ ├── zip_fread.c │ ├── zip_fseek.c │ ├── zip_ftell.c │ ├── zip_get_archive_comment.c │ ├── zip_get_archive_flag.c │ ├── zip_get_encryption_implementation.c │ ├── zip_get_file_comment.c │ ├── zip_get_name.c │ ├── zip_get_num_entries.c │ ├── zip_get_num_files.c │ ├── zip_hash.c │ ├── zip_io_util.c │ ├── zip_libzip_version.c │ ├── zip_memdup.c │ ├── zip_name_locate.c │ ├── zip_new.c │ ├── zip_open.c │ ├── zip_pkware.c │ ├── zip_progress.c │ ├── zip_random_unix.c │ ├── zip_random_uwp.c │ ├── zip_random_win32.c │ ├── zip_rename.c │ ├── zip_replace.c │ ├── zip_set_archive_comment.c │ ├── zip_set_archive_flag.c │ ├── zip_set_default_password.c │ ├── zip_set_file_comment.c │ ├── zip_set_file_compression.c │ ├── zip_set_name.c │ ├── zip_source_accept_empty.c │ ├── zip_source_begin_write.c │ ├── zip_source_begin_write_cloning.c │ ├── zip_source_buffer.c │ ├── zip_source_call.c │ ├── zip_source_close.c │ ├── zip_source_commit_write.c │ ├── zip_source_compress.c │ ├── zip_source_crc.c │ ├── zip_source_error.c │ ├── zip_source_file.h │ ├── zip_source_file_common.c │ ├── zip_source_file_stdio.c │ ├── zip_source_file_stdio.h │ ├── zip_source_file_stdio_named.c │ ├── zip_source_file_win32.c │ ├── zip_source_file_win32.h │ ├── zip_source_file_win32_ansi.c │ ├── zip_source_file_win32_named.c │ ├── zip_source_file_win32_utf16.c │ ├── zip_source_file_win32_utf8.c │ ├── zip_source_free.c │ ├── zip_source_function.c │ ├── zip_source_get_file_attributes.c │ ├── zip_source_is_deleted.c │ ├── zip_source_layered.c │ ├── zip_source_open.c │ ├── zip_source_pass_to_lower_layer.c │ ├── zip_source_pkware_decode.c │ ├── zip_source_pkware_encode.c │ ├── zip_source_read.c │ ├── zip_source_remove.c │ ├── zip_source_rollback_write.c │ ├── zip_source_seek.c │ ├── zip_source_seek_write.c │ ├── zip_source_stat.c │ ├── zip_source_supports.c │ ├── zip_source_tell.c │ ├── zip_source_tell_write.c │ ├── zip_source_window.c │ ├── zip_source_winzip_aes_decode.c │ ├── zip_source_winzip_aes_encode.c │ ├── zip_source_write.c │ ├── zip_source_zip.c │ ├── zip_source_zip_new.c │ ├── zip_stat.c │ ├── zip_stat_index.c │ ├── zip_stat_init.c │ ├── zip_strerror.c │ ├── zip_string.c │ ├── zip_unchange.c │ ├── zip_unchange_all.c │ ├── zip_unchange_archive.c │ ├── zip_unchange_data.c │ ├── zip_utf-8.c │ ├── zip_winzip_aes.c │ └── zipint.h ├── libzip-config.cmake.in ├── libzip.pc.in ├── man │ ├── CMakeLists.txt │ ├── ZIP_SOURCE_GET_ARGS.html │ ├── ZIP_SOURCE_GET_ARGS.man │ ├── ZIP_SOURCE_GET_ARGS.mdoc │ ├── handle_links │ ├── libzip.html │ ├── libzip.man │ ├── libzip.mdoc │ ├── links │ ├── update-html.cmake │ ├── update-man.cmake │ ├── zip_add.html │ ├── zip_add.man │ ├── zip_add.mdoc │ ├── zip_add_dir.html │ ├── zip_add_dir.man │ ├── zip_add_dir.mdoc │ ├── zip_close.html │ ├── zip_close.man │ ├── zip_close.mdoc │ ├── zip_compression_method_supported.html │ ├── zip_compression_method_supported.man │ ├── zip_compression_method_supported.mdoc │ ├── zip_delete.html │ ├── zip_delete.man │ ├── zip_delete.mdoc │ ├── zip_dir_add.html │ ├── zip_dir_add.man │ ├── zip_dir_add.mdoc │ ├── zip_discard.html │ ├── zip_discard.man │ ├── zip_discard.mdoc │ ├── zip_encryption_method_supported.html │ ├── zip_encryption_method_supported.man │ ├── zip_encryption_method_supported.mdoc │ ├── zip_error_clear.html │ ├── zip_error_clear.man │ ├── zip_error_clear.mdoc │ ├── zip_error_code_system.html │ ├── zip_error_code_system.man │ ├── zip_error_code_system.mdoc │ ├── zip_error_code_zip.html │ ├── zip_error_code_zip.man │ ├── zip_error_code_zip.mdoc │ ├── zip_error_fini.html │ ├── zip_error_fini.man │ ├── zip_error_fini.mdoc │ ├── zip_error_get.html │ ├── zip_error_get.man │ ├── zip_error_get.mdoc │ ├── zip_error_get_sys_type.html │ ├── zip_error_get_sys_type.man │ ├── zip_error_get_sys_type.mdoc │ ├── zip_error_init.html │ ├── zip_error_init.man │ ├── zip_error_init.mdoc │ ├── zip_error_set.html │ ├── zip_error_set.man │ ├── zip_error_set.mdoc │ ├── zip_error_set_from_source.mdoc │ ├── zip_error_strerror.html │ ├── zip_error_strerror.man │ ├── zip_error_strerror.mdoc │ ├── zip_error_system_type.html │ ├── zip_error_system_type.man │ ├── zip_error_system_type.mdoc │ ├── zip_error_to_data.html │ ├── zip_error_to_data.man │ ├── zip_error_to_data.mdoc │ ├── zip_error_to_str.html │ ├── zip_error_to_str.man │ ├── zip_error_to_str.mdoc │ ├── zip_errors.html │ ├── zip_errors.man │ ├── zip_errors.mdoc │ ├── zip_fclose.html │ ├── zip_fclose.man │ ├── zip_fclose.mdoc │ ├── zip_fdopen.html │ ├── zip_fdopen.man │ ├── zip_fdopen.mdoc │ ├── zip_file_add.html │ ├── zip_file_add.man │ ├── zip_file_add.mdoc │ ├── zip_file_attributes_init.html │ ├── zip_file_attributes_init.man │ ├── zip_file_attributes_init.mdoc │ ├── zip_file_extra_field_delete.html │ ├── zip_file_extra_field_delete.man │ ├── zip_file_extra_field_delete.mdoc │ ├── zip_file_extra_field_get.html │ ├── zip_file_extra_field_get.man │ ├── zip_file_extra_field_get.mdoc │ ├── zip_file_extra_field_set.html │ ├── zip_file_extra_field_set.man │ ├── zip_file_extra_field_set.mdoc │ ├── zip_file_extra_fields_count.html │ ├── zip_file_extra_fields_count.man │ ├── zip_file_extra_fields_count.mdoc │ ├── zip_file_get_comment.html │ ├── zip_file_get_comment.man │ ├── zip_file_get_comment.mdoc │ ├── zip_file_get_error.html │ ├── zip_file_get_error.man │ ├── zip_file_get_error.mdoc │ ├── zip_file_get_external_attributes.html │ ├── zip_file_get_external_attributes.man │ ├── zip_file_get_external_attributes.mdoc │ ├── zip_file_rename.html │ ├── zip_file_rename.man │ ├── zip_file_rename.mdoc │ ├── zip_file_set_comment.html │ ├── zip_file_set_comment.man │ ├── zip_file_set_comment.mdoc │ ├── zip_file_set_encryption.html │ ├── zip_file_set_encryption.man │ ├── zip_file_set_encryption.mdoc │ ├── zip_file_set_external_attributes.html │ ├── zip_file_set_external_attributes.man │ ├── zip_file_set_external_attributes.mdoc │ ├── zip_file_set_mtime.html │ ├── zip_file_set_mtime.man │ ├── zip_file_set_mtime.mdoc │ ├── zip_file_strerror.html │ ├── zip_file_strerror.man │ ├── zip_file_strerror.mdoc │ ├── zip_fopen.html │ ├── zip_fopen.man │ ├── zip_fopen.mdoc │ ├── zip_fopen_encrypted.html │ ├── zip_fopen_encrypted.man │ ├── zip_fopen_encrypted.mdoc │ ├── zip_fread.html │ ├── zip_fread.man │ ├── zip_fread.mdoc │ ├── zip_fseek.html │ ├── zip_fseek.man │ ├── zip_fseek.mdoc │ ├── zip_ftell.html │ ├── zip_ftell.man │ ├── zip_ftell.mdoc │ ├── zip_get_archive_comment.html │ ├── zip_get_archive_comment.man │ ├── zip_get_archive_comment.mdoc │ ├── zip_get_archive_flag.html │ ├── zip_get_archive_flag.man │ ├── zip_get_archive_flag.mdoc │ ├── zip_get_error.html │ ├── zip_get_error.man │ ├── zip_get_error.mdoc │ ├── zip_get_file_comment.html │ ├── zip_get_file_comment.man │ ├── zip_get_file_comment.mdoc │ ├── zip_get_name.html │ ├── zip_get_name.man │ ├── zip_get_name.mdoc │ ├── zip_get_num_entries.html │ ├── zip_get_num_entries.man │ ├── zip_get_num_entries.mdoc │ ├── zip_get_num_files.html │ ├── zip_get_num_files.man │ ├── zip_get_num_files.mdoc │ ├── zip_libzip_version.html │ ├── zip_libzip_version.man │ ├── zip_libzip_version.mdoc │ ├── zip_name_locate.html │ ├── zip_name_locate.man │ ├── zip_name_locate.mdoc │ ├── zip_open.html │ ├── zip_open.man │ ├── zip_open.mdoc │ ├── zip_register_cancel_callback_with_state.html │ ├── zip_register_cancel_callback_with_state.man │ ├── zip_register_cancel_callback_with_state.mdoc │ ├── zip_register_progress_callback.html │ ├── zip_register_progress_callback.man │ ├── zip_register_progress_callback.mdoc │ ├── zip_register_progress_callback_with_state.html │ ├── zip_register_progress_callback_with_state.man │ ├── zip_register_progress_callback_with_state.mdoc │ ├── zip_rename.html │ ├── zip_rename.man │ ├── zip_rename.mdoc │ ├── zip_set_archive_comment.html │ ├── zip_set_archive_comment.man │ ├── zip_set_archive_comment.mdoc │ ├── zip_set_archive_flag.html │ ├── zip_set_archive_flag.man │ ├── zip_set_archive_flag.mdoc │ ├── zip_set_default_password.html │ ├── zip_set_default_password.man │ ├── zip_set_default_password.mdoc │ ├── zip_set_file_comment.html │ ├── zip_set_file_comment.man │ ├── zip_set_file_comment.mdoc │ ├── zip_set_file_compression.html │ ├── zip_set_file_compression.man │ ├── zip_set_file_compression.mdoc │ ├── zip_source.html │ ├── zip_source.man │ ├── zip_source.mdoc │ ├── zip_source_begin_write.html │ ├── zip_source_begin_write.man │ ├── zip_source_begin_write.mdoc │ ├── zip_source_buffer.html │ ├── zip_source_buffer.man │ ├── zip_source_buffer.mdoc │ ├── zip_source_buffer_fragment.html │ ├── zip_source_buffer_fragment.man │ ├── zip_source_buffer_fragment.mdoc │ ├── zip_source_close.html │ ├── zip_source_close.man │ ├── zip_source_close.mdoc │ ├── zip_source_commit_write.html │ ├── zip_source_commit_write.man │ ├── zip_source_commit_write.mdoc │ ├── zip_source_error.html │ ├── zip_source_error.man │ ├── zip_source_error.mdoc │ ├── zip_source_file.html │ ├── zip_source_file.man │ ├── zip_source_file.mdoc │ ├── zip_source_filep.html │ ├── zip_source_filep.man │ ├── zip_source_filep.mdoc │ ├── zip_source_free.html │ ├── zip_source_free.man │ ├── zip_source_free.mdoc │ ├── zip_source_function.html │ ├── zip_source_function.man │ ├── zip_source_function.mdoc │ ├── zip_source_is_deleted.html │ ├── zip_source_is_deleted.man │ ├── zip_source_is_deleted.mdoc │ ├── zip_source_is_seekable.html │ ├── zip_source_is_seekable.man │ ├── zip_source_is_seekable.mdoc │ ├── zip_source_keep.html │ ├── zip_source_keep.man │ ├── zip_source_keep.mdoc │ ├── zip_source_layered.html │ ├── zip_source_layered.man │ ├── zip_source_layered.mdoc │ ├── zip_source_make_command_bitmap.html │ ├── zip_source_make_command_bitmap.man │ ├── zip_source_make_command_bitmap.mdoc │ ├── zip_source_open.html │ ├── zip_source_open.man │ ├── zip_source_open.mdoc │ ├── zip_source_pass_to_lower_layer.mdoc │ ├── zip_source_read.html │ ├── zip_source_read.man │ ├── zip_source_read.mdoc │ ├── zip_source_rollback_write.html │ ├── zip_source_rollback_write.man │ ├── zip_source_rollback_write.mdoc │ ├── zip_source_seek.html │ ├── zip_source_seek.man │ ├── zip_source_seek.mdoc │ ├── zip_source_seek_compute_offset.html │ ├── zip_source_seek_compute_offset.man │ ├── zip_source_seek_compute_offset.mdoc │ ├── zip_source_seek_write.html │ ├── zip_source_seek_write.man │ ├── zip_source_seek_write.mdoc │ ├── zip_source_stat.html │ ├── zip_source_stat.man │ ├── zip_source_stat.mdoc │ ├── zip_source_tell.html │ ├── zip_source_tell.man │ ├── zip_source_tell.mdoc │ ├── zip_source_tell_write.html │ ├── zip_source_tell_write.man │ ├── zip_source_tell_write.mdoc │ ├── zip_source_win32a.html │ ├── zip_source_win32a.man │ ├── zip_source_win32a.mdoc │ ├── zip_source_win32handle.html │ ├── zip_source_win32handle.man │ ├── zip_source_win32handle.mdoc │ ├── zip_source_win32w.html │ ├── zip_source_win32w.man │ ├── zip_source_win32w.mdoc │ ├── zip_source_window_create.html │ ├── zip_source_window_create.man │ ├── zip_source_window_create.mdoc │ ├── zip_source_write.html │ ├── zip_source_write.man │ ├── zip_source_write.mdoc │ ├── zip_source_zip.html │ ├── zip_source_zip.man │ ├── zip_source_zip.mdoc │ ├── zip_source_zip_file.html │ ├── zip_source_zip_file.man │ ├── zip_source_zip_file.mdoc │ ├── zip_stat.html │ ├── zip_stat.man │ ├── zip_stat.mdoc │ ├── zip_stat_init.html │ ├── zip_stat_init.man │ ├── zip_stat_init.mdoc │ ├── zip_unchange.html │ ├── zip_unchange.man │ ├── zip_unchange.mdoc │ ├── zip_unchange_all.html │ ├── zip_unchange_all.man │ ├── zip_unchange_all.mdoc │ ├── zip_unchange_archive.html │ ├── zip_unchange_archive.man │ ├── zip_unchange_archive.mdoc │ ├── zipcmp.html │ ├── zipcmp.man │ ├── zipcmp.mdoc │ ├── zipmerge.html │ ├── zipmerge.man │ ├── zipmerge.mdoc │ ├── ziptool.html │ ├── ziptool.man │ └── ziptool.mdoc ├── regress │ ├── CMakeLists.txt │ ├── add_dir.test │ ├── add_from_buffer.test │ ├── add_from_file.test │ ├── add_from_file_duplicate.test │ ├── add_from_file_twice_duplicate.test │ ├── add_from_file_unchange.test │ ├── add_from_filep.c │ ├── add_from_filep.test │ ├── add_from_stdin.test │ ├── add_from_zip_closed.test │ ├── add_from_zip_deflated.test │ ├── add_from_zip_deflated2.test │ ├── add_from_zip_partial_deflated.test │ ├── add_from_zip_partial_stored.test │ ├── add_from_zip_stored.test │ ├── add_stored.test │ ├── add_stored_in_memory.test │ ├── bigstored.zh │ ├── bigzero-zip.zip │ ├── bogus.zip │ ├── broken.zip │ ├── buffer-fragment-read.test │ ├── buffer-fragment-write.test │ ├── can_clone_file.c │ ├── cancel_45.test │ ├── cancel_90.test │ ├── changing-size-decreases-fixed.test │ ├── changing-size-decreases.test │ ├── changing-size-increases-fixed.test │ ├── changing-size-increases-unchecked.test │ ├── changing-size-increases.test │ ├── changing-size-muchl.zip │ ├── changing-size-muchlo.zip │ ├── changing-size-muchlonger.zip │ ├── changing-size.zip │ ├── check_torrentzip_fail.test │ ├── check_torrentzip_modified.test │ ├── check_torrentzip_success.test │ ├── cleanup.cmake │ ├── clone-buffer-add.test │ ├── clone-buffer-delete.test │ ├── clone-buffer-replace.test │ ├── clone-fs-add.test │ ├── clone-fs-delete.test │ ├── clone-fs-replace.test │ ├── cm-default.test │ ├── cm-default.zip │ ├── convert_to_torrentzip.test │ ├── convert_to_torrentzip_ef.test │ ├── count_entries.test │ ├── create_empty_keep.test │ ├── decrypt-correct-password-aes128.test │ ├── decrypt-correct-password-aes192.test │ ├── decrypt-correct-password-aes256.test │ ├── decrypt-correct-password-pkware-2.test │ ├── decrypt-correct-password-pkware.test │ ├── decrypt-empty-file-pkware.test │ ├── decrypt-no-password-aes256.test │ ├── decrypt-wrong-password-aes128.test │ ├── decrypt-wrong-password-aes192.test │ ├── decrypt-wrong-password-aes256.test │ ├── decrypt-wrong-password-pkware-2.test │ ├── decrypt-wrong-password-pkware.test │ ├── delete_add_same.test │ ├── delete_invalid.test │ ├── delete_last.test │ ├── delete_last_keep.test │ ├── delete_multiple_last.test │ ├── delete_multiple_partial.test │ ├── delete_renamed_rename.test │ ├── empty-pkware.zip │ ├── encrypt-1234.zip │ ├── encrypt-aes128-noentropy.zip │ ├── encrypt-aes128.zip │ ├── encrypt-aes192-noentropy.zip │ ├── encrypt-aes192.zip │ ├── encrypt-aes256-noentropy.zip │ ├── encrypt-aes256.zip │ ├── encrypt-none.zip │ ├── encrypt-pkware-noentropy-2.zip │ ├── encrypt-pkware-noentropy.zip │ ├── encrypt.test │ ├── encrypt.zip │ ├── encrypt_plus_extra.zip │ ├── encrypt_plus_extra_modified_c.zip │ ├── encrypt_plus_extra_modified_l.zip │ ├── encryption-nonrandom-aes128.test │ ├── encryption-nonrandom-aes192.test │ ├── encryption-nonrandom-aes256.test │ ├── encryption-nonrandom-pkware-2.test │ ├── encryption-nonrandom-pkware.test │ ├── encryption-remove.test │ ├── encryption-stat.test │ ├── extra_add.test │ ├── extra_add_multiple.test │ ├── extra_count.test │ ├── extra_count_by_id.test │ ├── extra_count_ignore_zip64.test │ ├── extra_delete.test │ ├── extra_delete_by_id.test │ ├── extra_field_align.test │ ├── extra_field_align_1-0.zip │ ├── extra_field_align_1-ef_00.zip │ ├── extra_field_align_1-ef_ff.zip │ ├── extra_field_align_1-ff.zip │ ├── extra_field_align_2-0.zip │ ├── extra_field_align_2-ef_00.zip │ ├── extra_field_align_2-ef_ff.zip │ ├── extra_field_align_2-ff.zip │ ├── extra_field_align_3-0.zip │ ├── extra_field_align_3-ef_00.zip │ ├── extra_field_align_3-ef_ff.zip │ ├── extra_field_align_3-ff.zip │ ├── extra_field_align_4-ff.zip │ ├── extra_get.test │ ├── extra_get_by_id.test │ ├── extra_set.test │ ├── extra_set_modify_c.test │ ├── extra_set_modify_l.test │ ├── fdopen_ok.test │ ├── file_comment_encmismatch.test │ ├── filename_duplicate.zip │ ├── filename_duplicate_empty.zip │ ├── filename_empty.zip │ ├── fileorder.zip │ ├── firstsecond-split-deflated.zip │ ├── firstsecond-split-stored.zip │ ├── firstsecond.zip │ ├── foo-stored.zip │ ├── fopen_multiple.test │ ├── fopen_multiple_reopen.test │ ├── fopen_unchanged.c │ ├── fopen_unchanged.test │ ├── fread.c │ ├── fread.test │ ├── fseek.c │ ├── fseek_deflated.test │ ├── fseek_fail.test │ ├── fseek_ok.test │ ├── fuzz_main.c │ ├── gap-add.zip │ ├── gap-delete.zip │ ├── gap-replace.zip │ ├── gap.zip │ ├── get_comment.test │ ├── hole.c │ ├── incons-archive-comment-longer.zip │ ├── incons-archive-comment-shorter.zip │ ├── incons-cdoffset.zip │ ├── incons-central-compression-method.zip │ ├── incons-central-compsize-larger-toolarge.zip │ ├── incons-central-compsize-larger.zip │ ├── incons-central-compsize-smaller.zip │ ├── incons-central-crc.zip │ ├── incons-central-date.zip │ ├── incons-central-file-comment-longer.zip │ ├── incons-central-file-comment-shorter.zip │ ├── incons-central-magic-bad.zip │ ├── incons-central-magic-bad2.zip │ ├── incons-central-size-larger.zip │ ├── incons-data.zip │ ├── incons-ef-central-size-wrong.zip │ ├── incons-ef-local-id-size.zip │ ├── incons-ef-local-id.zip │ ├── incons-ef-local-size.zip │ ├── incons-eocd-magic-bad.zip │ ├── incons-file-count-high.zip │ ├── incons-file-count-low.zip │ ├── incons-file-count-overflow.zip │ ├── incons-local-compression-method.zip │ ├── incons-local-compsize-larger.zip │ ├── incons-local-compsize-smaller.zip │ ├── incons-local-crc.zip │ ├── incons-local-filename-long.zip │ ├── incons-local-filename-missing.zip │ ├── incons-local-filename-short.zip │ ├── incons-local-filename.zip │ ├── incons-local-magic-bad.zip │ ├── incons-local-size-larger.zip │ ├── junk-at-end.zip │ ├── junk-at-start.zip │ ├── junk_at_end.test │ ├── junk_at_start.test │ ├── large-uncompressible │ ├── liboverride-test.c │ ├── liboverride.c │ ├── lzma-no-eos.zip │ ├── malloc.c │ ├── manyfiles-zip.zip │ ├── multidisk.zip │ ├── name_locate-cp437.test │ ├── name_locate-utf8.test │ ├── name_locate.test │ ├── nihtest.conf.in │ ├── nonrandomopen.c │ ├── nonrandomopentest.c │ ├── open_cons_extrabytes.test │ ├── open_empty.test │ ├── open_empty_2.test │ ├── open_extrabytes.test │ ├── open_file_count.test │ ├── open_filename_duplicate.test │ ├── open_filename_duplicate_consistency.test │ ├── open_filename_duplicate_empty.test │ ├── open_filename_duplicate_empty_consistency.test │ ├── open_filename_empty.test │ ├── open_incons.test │ ├── open_many_fail.test │ ├── open_many_ok.test │ ├── open_multidisk.test │ ├── open_new_but_exists.test │ ├── open_new_ok.test │ ├── open_nonarchive.test │ ├── open_nosuchfile.test │ ├── open_ok.test │ ├── open_too_short.test │ ├── open_truncate.test │ ├── open_zip64_3mf.test │ ├── open_zip64_ok.test │ ├── ossfuzz.sh │ ├── preload.test │ ├── progress.test │ ├── read_seek_read.test │ ├── rename_ascii.test │ ├── rename_cp437.test │ ├── rename_deleted.test │ ├── rename_fail.test │ ├── rename_ok.test │ ├── rename_ok.zip │ ├── rename_utf8.test │ ├── rename_utf8_encmismatch.test │ ├── reopen.test │ ├── reopen_partial.test │ ├── reopen_partial_rest.test │ ├── set_comment_all.test │ ├── set_comment_localonly.test │ ├── set_comment_removeglobal.test │ ├── set_comment_revert.test │ ├── set_compression_bzip2_to_deflate.test │ ├── set_compression_deflate_to_bzip2.test │ ├── set_compression_deflate_to_deflate.test │ ├── set_compression_deflate_to_store.test │ ├── set_compression_lzma_no_eos_to_store.test │ ├── set_compression_lzma_to_store.test │ ├── set_compression_store_to_bzip2.test │ ├── set_compression_store_to_deflate.test │ ├── set_compression_store_to_lzma.test │ ├── set_compression_store_to_store.test │ ├── set_compression_store_to_xz.test │ ├── set_compression_store_to_zstd.test │ ├── set_compression_unknown.test │ ├── set_compression_xz_to_store.test │ ├── set_compression_zstd_to_store.test │ ├── set_file_dostime.test │ ├── set_file_mtime.test │ ├── set_file_mtime_pkware.test │ ├── short │ ├── source_hole.c │ ├── stat_index_cp437_guess.test │ ├── stat_index_cp437_raw.test │ ├── stat_index_cp437_strict.test │ ├── stat_index_fileorder.test │ ├── stat_index_streamed.test │ ├── stat_index_streamed_zip64.test │ ├── stat_index_utf8_guess.test │ ├── stat_index_utf8_raw.test │ ├── stat_index_utf8_strict.test │ ├── stat_index_utf8_unmarked_strict.test │ ├── stat_index_zip64.test │ ├── stored-no-eos.zip │ ├── streamed-zip64.zip │ ├── streamed.zip │ ├── test-cp437-comment-utf-8.zip │ ├── test-cp437-fc-utf-8-filename.zip │ ├── test-cp437-fc.zip │ ├── test-cp437.zip │ ├── test-utf8-unmarked.zip │ ├── test-utf8.zip │ ├── test.zip │ ├── test2.zip │ ├── test_open_multiple.zip │ ├── testbuffer.zip │ ├── testbuffer_reopen.zip │ ├── testbzip2.zip │ ├── testchanged.zip │ ├── testchangedlocal.zip │ ├── testcomment.zip │ ├── testcomment13.zip │ ├── testcommentremoved.zip │ ├── testdeflated.zip │ ├── testdeflated2.zip │ ├── testdir.zip │ ├── testempty.zip │ ├── testextrabytes.zip │ ├── testfile-UTF8.zip │ ├── testfile-cp437.zip │ ├── testfile-ef.zip │ ├── testfile-lzma.zip │ ├── testfile-plus-extra.zip │ ├── testfile-stored-dos.zip │ ├── testfile-torrentzip-modified.zip │ ├── testfile-torrentzip.zip │ ├── testfile-xz.zip │ ├── testfile-zstd.zip │ ├── testfile.txt │ ├── testfile.zip │ ├── testfile0.zip │ ├── testfile2014.zip │ ├── teststdin.zip │ ├── teststored.zip │ ├── truncate_empty_keep.test │ ├── tryopen.c │ ├── unchange-delete-namelocate.test │ ├── utf-8-standardization-input.zip │ ├── utf-8-standardization-output.zip │ ├── utf-8-standardization.test │ ├── want_torrentzip_stat.test │ ├── zip-in-archive-comment.test │ ├── zip-in-archive-comment.zip │ ├── zip64-3mf.zip │ ├── zip64.zip │ ├── zip64_creation.test │ ├── zip64_stored_creation.test │ ├── zip_read_fuzzer.cc │ ├── zip_read_fuzzer.dict │ ├── zipcmp_zip_dir.test │ ├── zipcmp_zip_dir.zip │ └── ziptool_regress.c └── src │ ├── CMakeLists.txt │ ├── diff_output.c │ ├── diff_output.h │ ├── getopt.c │ ├── getopt.h │ ├── zipcmp.c │ ├── zipmerge.c │ └── ziptool.c ├── nodejs ├── README.md └── helloworld.mjs ├── phigros.h ├── python ├── README.md └── helloworld.py ├── script-py ├── PhigrosLibrary.py └── test.py ├── single.txt ├── src ├── cJSON.c ├── cJSON.h ├── openssl │ ├── __DECC_INCLUDE_EPILOGUE.H │ ├── __DECC_INCLUDE_PROLOGUE.H │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1err.h │ ├── asn1t.h │ ├── async.h │ ├── asyncerr.h │ ├── bio.h │ ├── bioerr.h │ ├── blowfish.h │ ├── bn.h │ ├── bnerr.h │ ├── buffer.h │ ├── buffererr.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cmp.h │ ├── cmp_util.h │ ├── cmperr.h │ ├── cms.h │ ├── cmserr.h │ ├── comp.h │ ├── comperr.h │ ├── conf.h │ ├── conf_api.h │ ├── conferr.h │ ├── configuration.h │ ├── conftypes.h │ ├── core.h │ ├── core_dispatch.h │ ├── core_names.h │ ├── core_object.h │ ├── crmf.h │ ├── crmferr.h │ ├── crypto.h │ ├── cryptoerr.h │ ├── cryptoerr_legacy.h │ ├── ct.h │ ├── cterr.h │ ├── decoder.h │ ├── decodererr.h │ ├── des.h │ ├── dh.h │ ├── dherr.h │ ├── dsa.h │ ├── dsaerr.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── ecerr.h │ ├── encoder.h │ ├── encodererr.h │ ├── engine.h │ ├── engineerr.h │ ├── err.h │ ├── ess.h │ ├── esserr.h │ ├── evp.h │ ├── evperr.h │ ├── fips_names.h │ ├── fipskey.h │ ├── hmac.h │ ├── http.h │ ├── httperr.h │ ├── idea.h │ ├── kdf.h │ ├── kdferr.h │ ├── lhash.h │ ├── macros.h │ ├── md2.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── objectserr.h │ ├── ocsp.h │ ├── ocsperr.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── param_build.h │ ├── params.h │ ├── pem.h │ ├── pem2.h │ ├── pemerr.h │ ├── pkcs12.h │ ├── pkcs12err.h │ ├── pkcs7.h │ ├── pkcs7err.h │ ├── prov_ssl.h │ ├── proverr.h │ ├── provider.h │ ├── rand.h │ ├── randerr.h │ ├── rc2.h │ ├── rc4.h │ ├── rc5.h │ ├── ripemd.h │ ├── rsa.h │ ├── rsaerr.h │ ├── safestack.h │ ├── seed.h │ ├── self_test.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl3.h │ ├── sslerr.h │ ├── sslerr_legacy.h │ ├── stack.h │ ├── store.h │ ├── storeerr.h │ ├── symhacks.h │ ├── tls1.h │ ├── trace.h │ ├── ts.h │ ├── tserr.h │ ├── txt_db.h │ ├── types.h │ ├── ui.h │ ├── uierr.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ ├── x509err.h │ ├── x509v3.h │ └── x509v3err.h ├── phigros.cxx └── save.c └── tips.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /nodejs/build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /PhigrosLibrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/PhigrosLibrary.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/README.md -------------------------------------------------------------------------------- /avatar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/avatar.txt -------------------------------------------------------------------------------- /collection.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/collection.tsv -------------------------------------------------------------------------------- /difficulty.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/difficulty.tsv -------------------------------------------------------------------------------- /illustration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/illustration.txt -------------------------------------------------------------------------------- /info.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/info.tsv -------------------------------------------------------------------------------- /libzip/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/.clang-format -------------------------------------------------------------------------------- /libzip/.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /libzip/.github/workflows/CIFuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/.github/workflows/CIFuzz.yml -------------------------------------------------------------------------------- /libzip/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/.github/workflows/build.yml -------------------------------------------------------------------------------- /libzip/.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /libzip/API-CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/API-CHANGES.md -------------------------------------------------------------------------------- /libzip/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/AUTHORS -------------------------------------------------------------------------------- /libzip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/CMakeLists.txt -------------------------------------------------------------------------------- /libzip/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/INSTALL.md -------------------------------------------------------------------------------- /libzip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/LICENSE -------------------------------------------------------------------------------- /libzip/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/NEWS.md -------------------------------------------------------------------------------- /libzip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/README.md -------------------------------------------------------------------------------- /libzip/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/SECURITY.md -------------------------------------------------------------------------------- /libzip/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/THANKS -------------------------------------------------------------------------------- /libzip/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/TODO.md -------------------------------------------------------------------------------- /libzip/android/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/android/do.sh -------------------------------------------------------------------------------- /libzip/android/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/android/docker/Dockerfile -------------------------------------------------------------------------------- /libzip/android/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/android/readme.txt -------------------------------------------------------------------------------- /libzip/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/appveyor.yml -------------------------------------------------------------------------------- /libzip/cmake-compat/CMakePushCheckState.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-compat/CMakePushCheckState.cmake -------------------------------------------------------------------------------- /libzip/cmake-compat/CheckLibraryExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-compat/CheckLibraryExists.cmake -------------------------------------------------------------------------------- /libzip/cmake-compat/CheckSymbolExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-compat/CheckSymbolExists.cmake -------------------------------------------------------------------------------- /libzip/cmake-compat/FindBZip2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-compat/FindBZip2.cmake -------------------------------------------------------------------------------- /libzip/cmake-compat/FindGnuTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-compat/FindGnuTLS.cmake -------------------------------------------------------------------------------- /libzip/cmake-compat/FindLibLZMA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-compat/FindLibLZMA.cmake -------------------------------------------------------------------------------- /libzip/cmake-compat/FindPackageMessage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-compat/FindPackageMessage.cmake -------------------------------------------------------------------------------- /libzip/cmake-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-config.h.in -------------------------------------------------------------------------------- /libzip/cmake-zipconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake-zipconf.h.in -------------------------------------------------------------------------------- /libzip/cmake/Dist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake/Dist.cmake -------------------------------------------------------------------------------- /libzip/cmake/FindMbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake/FindMbedTLS.cmake -------------------------------------------------------------------------------- /libzip/cmake/FindNettle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake/FindNettle.cmake -------------------------------------------------------------------------------- /libzip/cmake/Findzstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake/Findzstd.cmake -------------------------------------------------------------------------------- /libzip/cmake/GenerateZipErrorStrings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/cmake/GenerateZipErrorStrings.cmake -------------------------------------------------------------------------------- /libzip/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/examples/CMakeLists.txt -------------------------------------------------------------------------------- /libzip/examples/add-compressed-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/examples/add-compressed-data.c -------------------------------------------------------------------------------- /libzip/examples/autoclose-archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/examples/autoclose-archive.c -------------------------------------------------------------------------------- /libzip/examples/in-memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/examples/in-memory.c -------------------------------------------------------------------------------- /libzip/examples/windows-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/examples/windows-open.c -------------------------------------------------------------------------------- /libzip/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/CMakeLists.txt -------------------------------------------------------------------------------- /libzip/lib/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/compat.h -------------------------------------------------------------------------------- /libzip/lib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip.h -------------------------------------------------------------------------------- /libzip/lib/zip_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_add.c -------------------------------------------------------------------------------- /libzip/lib/zip_add_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_add_dir.c -------------------------------------------------------------------------------- /libzip/lib/zip_add_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_add_entry.c -------------------------------------------------------------------------------- /libzip/lib/zip_algorithm_bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_algorithm_bzip2.c -------------------------------------------------------------------------------- /libzip/lib/zip_algorithm_deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_algorithm_deflate.c -------------------------------------------------------------------------------- /libzip/lib/zip_algorithm_xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_algorithm_xz.c -------------------------------------------------------------------------------- /libzip/lib/zip_algorithm_zstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_algorithm_zstd.c -------------------------------------------------------------------------------- /libzip/lib/zip_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_buffer.c -------------------------------------------------------------------------------- /libzip/lib/zip_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_close.c -------------------------------------------------------------------------------- /libzip/lib/zip_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto.h -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_commoncrypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_commoncrypto.c -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_commoncrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_commoncrypto.h -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_gnutls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_gnutls.c -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_gnutls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_gnutls.h -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_mbedtls.c -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_mbedtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_mbedtls.h -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_openssl.c -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_openssl.h -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_win.c -------------------------------------------------------------------------------- /libzip/lib/zip_crypto_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_crypto_win.h -------------------------------------------------------------------------------- /libzip/lib/zip_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_delete.c -------------------------------------------------------------------------------- /libzip/lib/zip_dir_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_dir_add.c -------------------------------------------------------------------------------- /libzip/lib/zip_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_dirent.c -------------------------------------------------------------------------------- /libzip/lib/zip_discard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_discard.c -------------------------------------------------------------------------------- /libzip/lib/zip_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_entry.c -------------------------------------------------------------------------------- /libzip/lib/zip_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_error.c -------------------------------------------------------------------------------- /libzip/lib/zip_error_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_error_clear.c -------------------------------------------------------------------------------- /libzip/lib/zip_error_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_error_get.c -------------------------------------------------------------------------------- /libzip/lib/zip_error_get_sys_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_error_get_sys_type.c -------------------------------------------------------------------------------- /libzip/lib/zip_error_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_error_strerror.c -------------------------------------------------------------------------------- /libzip/lib/zip_error_to_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_error_to_str.c -------------------------------------------------------------------------------- /libzip/lib/zip_extra_field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_extra_field.c -------------------------------------------------------------------------------- /libzip/lib/zip_extra_field_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_extra_field_api.c -------------------------------------------------------------------------------- /libzip/lib/zip_fclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_fclose.c -------------------------------------------------------------------------------- /libzip/lib/zip_fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_fdopen.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_add.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_error_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_error_clear.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_error_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_error_get.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_get_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_get_comment.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_get_external_attributes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_get_external_attributes.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_get_offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_get_offset.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_rename.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_replace.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_set_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_set_comment.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_set_encryption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_set_encryption.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_set_mtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_set_mtime.c -------------------------------------------------------------------------------- /libzip/lib/zip_file_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_file_strerror.c -------------------------------------------------------------------------------- /libzip/lib/zip_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_fopen.c -------------------------------------------------------------------------------- /libzip/lib/zip_fopen_encrypted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_fopen_encrypted.c -------------------------------------------------------------------------------- /libzip/lib/zip_fopen_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_fopen_index.c -------------------------------------------------------------------------------- /libzip/lib/zip_fopen_index_encrypted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_fopen_index_encrypted.c -------------------------------------------------------------------------------- /libzip/lib/zip_fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_fread.c -------------------------------------------------------------------------------- /libzip/lib/zip_fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_fseek.c -------------------------------------------------------------------------------- /libzip/lib/zip_ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_ftell.c -------------------------------------------------------------------------------- /libzip/lib/zip_get_archive_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_get_archive_comment.c -------------------------------------------------------------------------------- /libzip/lib/zip_get_archive_flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_get_archive_flag.c -------------------------------------------------------------------------------- /libzip/lib/zip_get_file_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_get_file_comment.c -------------------------------------------------------------------------------- /libzip/lib/zip_get_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_get_name.c -------------------------------------------------------------------------------- /libzip/lib/zip_get_num_entries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_get_num_entries.c -------------------------------------------------------------------------------- /libzip/lib/zip_get_num_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_get_num_files.c -------------------------------------------------------------------------------- /libzip/lib/zip_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_hash.c -------------------------------------------------------------------------------- /libzip/lib/zip_io_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_io_util.c -------------------------------------------------------------------------------- /libzip/lib/zip_libzip_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_libzip_version.c -------------------------------------------------------------------------------- /libzip/lib/zip_memdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_memdup.c -------------------------------------------------------------------------------- /libzip/lib/zip_name_locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_name_locate.c -------------------------------------------------------------------------------- /libzip/lib/zip_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_new.c -------------------------------------------------------------------------------- /libzip/lib/zip_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_open.c -------------------------------------------------------------------------------- /libzip/lib/zip_pkware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_pkware.c -------------------------------------------------------------------------------- /libzip/lib/zip_progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_progress.c -------------------------------------------------------------------------------- /libzip/lib/zip_random_unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_random_unix.c -------------------------------------------------------------------------------- /libzip/lib/zip_random_uwp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_random_uwp.c -------------------------------------------------------------------------------- /libzip/lib/zip_random_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_random_win32.c -------------------------------------------------------------------------------- /libzip/lib/zip_rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_rename.c -------------------------------------------------------------------------------- /libzip/lib/zip_replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_replace.c -------------------------------------------------------------------------------- /libzip/lib/zip_set_archive_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_set_archive_comment.c -------------------------------------------------------------------------------- /libzip/lib/zip_set_archive_flag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_set_archive_flag.c -------------------------------------------------------------------------------- /libzip/lib/zip_set_default_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_set_default_password.c -------------------------------------------------------------------------------- /libzip/lib/zip_set_file_comment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_set_file_comment.c -------------------------------------------------------------------------------- /libzip/lib/zip_set_file_compression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_set_file_compression.c -------------------------------------------------------------------------------- /libzip/lib/zip_set_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_set_name.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_accept_empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_accept_empty.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_begin_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_begin_write.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_buffer.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_call.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_call.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_close.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_commit_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_commit_write.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_compress.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_crc.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_error.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file.h -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_common.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_stdio.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_stdio.h -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_stdio_named.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_stdio_named.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_win32.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_win32.h -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_win32_ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_win32_ansi.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_win32_named.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_win32_named.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_win32_utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_win32_utf16.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_file_win32_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_file_win32_utf8.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_free.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_function.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_is_deleted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_is_deleted.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_layered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_layered.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_open.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_pkware_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_pkware_decode.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_pkware_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_pkware_encode.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_read.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_remove.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_rollback_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_rollback_write.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_seek.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_seek_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_seek_write.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_stat.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_supports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_supports.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_tell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_tell.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_tell_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_tell_write.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_window.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_winzip_aes_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_winzip_aes_decode.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_winzip_aes_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_winzip_aes_encode.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_write.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_zip.c -------------------------------------------------------------------------------- /libzip/lib/zip_source_zip_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_source_zip_new.c -------------------------------------------------------------------------------- /libzip/lib/zip_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_stat.c -------------------------------------------------------------------------------- /libzip/lib/zip_stat_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_stat_index.c -------------------------------------------------------------------------------- /libzip/lib/zip_stat_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_stat_init.c -------------------------------------------------------------------------------- /libzip/lib/zip_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_strerror.c -------------------------------------------------------------------------------- /libzip/lib/zip_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_string.c -------------------------------------------------------------------------------- /libzip/lib/zip_unchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_unchange.c -------------------------------------------------------------------------------- /libzip/lib/zip_unchange_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_unchange_all.c -------------------------------------------------------------------------------- /libzip/lib/zip_unchange_archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_unchange_archive.c -------------------------------------------------------------------------------- /libzip/lib/zip_unchange_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_unchange_data.c -------------------------------------------------------------------------------- /libzip/lib/zip_utf-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_utf-8.c -------------------------------------------------------------------------------- /libzip/lib/zip_winzip_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zip_winzip_aes.c -------------------------------------------------------------------------------- /libzip/lib/zipint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/lib/zipint.h -------------------------------------------------------------------------------- /libzip/libzip-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/libzip-config.cmake.in -------------------------------------------------------------------------------- /libzip/libzip.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/libzip.pc.in -------------------------------------------------------------------------------- /libzip/man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/CMakeLists.txt -------------------------------------------------------------------------------- /libzip/man/ZIP_SOURCE_GET_ARGS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/ZIP_SOURCE_GET_ARGS.html -------------------------------------------------------------------------------- /libzip/man/ZIP_SOURCE_GET_ARGS.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/ZIP_SOURCE_GET_ARGS.man -------------------------------------------------------------------------------- /libzip/man/ZIP_SOURCE_GET_ARGS.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/ZIP_SOURCE_GET_ARGS.mdoc -------------------------------------------------------------------------------- /libzip/man/handle_links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/handle_links -------------------------------------------------------------------------------- /libzip/man/libzip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/libzip.html -------------------------------------------------------------------------------- /libzip/man/libzip.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/libzip.man -------------------------------------------------------------------------------- /libzip/man/libzip.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/libzip.mdoc -------------------------------------------------------------------------------- /libzip/man/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/links -------------------------------------------------------------------------------- /libzip/man/update-html.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/update-html.cmake -------------------------------------------------------------------------------- /libzip/man/update-man.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/update-man.cmake -------------------------------------------------------------------------------- /libzip/man/zip_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_add.html -------------------------------------------------------------------------------- /libzip/man/zip_add.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_add.man -------------------------------------------------------------------------------- /libzip/man/zip_add.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_add.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_add_dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_add_dir.html -------------------------------------------------------------------------------- /libzip/man/zip_add_dir.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_add_dir.man -------------------------------------------------------------------------------- /libzip/man/zip_add_dir.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_add_dir.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_close.html -------------------------------------------------------------------------------- /libzip/man/zip_close.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_close.man -------------------------------------------------------------------------------- /libzip/man/zip_close.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_close.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_delete.html -------------------------------------------------------------------------------- /libzip/man/zip_delete.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_delete.man -------------------------------------------------------------------------------- /libzip/man/zip_delete.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_delete.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_dir_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_dir_add.html -------------------------------------------------------------------------------- /libzip/man/zip_dir_add.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_dir_add.man -------------------------------------------------------------------------------- /libzip/man/zip_dir_add.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_dir_add.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_discard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_discard.html -------------------------------------------------------------------------------- /libzip/man/zip_discard.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_discard.man -------------------------------------------------------------------------------- /libzip/man/zip_discard.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_discard.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_clear.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_clear.html -------------------------------------------------------------------------------- /libzip/man/zip_error_clear.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_clear.man -------------------------------------------------------------------------------- /libzip/man/zip_error_clear.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_clear.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_code_system.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_code_system.html -------------------------------------------------------------------------------- /libzip/man/zip_error_code_system.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_code_system.man -------------------------------------------------------------------------------- /libzip/man/zip_error_code_system.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_code_system.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_code_zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_code_zip.html -------------------------------------------------------------------------------- /libzip/man/zip_error_code_zip.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_code_zip.man -------------------------------------------------------------------------------- /libzip/man/zip_error_code_zip.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_code_zip.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_fini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_fini.html -------------------------------------------------------------------------------- /libzip/man/zip_error_fini.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_fini.man -------------------------------------------------------------------------------- /libzip/man/zip_error_fini.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_fini.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_get.html -------------------------------------------------------------------------------- /libzip/man/zip_error_get.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_get.man -------------------------------------------------------------------------------- /libzip/man/zip_error_get.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_get.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_get_sys_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_get_sys_type.html -------------------------------------------------------------------------------- /libzip/man/zip_error_get_sys_type.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_get_sys_type.man -------------------------------------------------------------------------------- /libzip/man/zip_error_get_sys_type.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_get_sys_type.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_init.html -------------------------------------------------------------------------------- /libzip/man/zip_error_init.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_init.man -------------------------------------------------------------------------------- /libzip/man/zip_error_init.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_init.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_set.html -------------------------------------------------------------------------------- /libzip/man/zip_error_set.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_set.man -------------------------------------------------------------------------------- /libzip/man/zip_error_set.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_set.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_set_from_source.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_set_from_source.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_strerror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_strerror.html -------------------------------------------------------------------------------- /libzip/man/zip_error_strerror.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_strerror.man -------------------------------------------------------------------------------- /libzip/man/zip_error_strerror.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_strerror.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_system_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_system_type.html -------------------------------------------------------------------------------- /libzip/man/zip_error_system_type.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_system_type.man -------------------------------------------------------------------------------- /libzip/man/zip_error_system_type.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_system_type.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_to_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_to_data.html -------------------------------------------------------------------------------- /libzip/man/zip_error_to_data.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_to_data.man -------------------------------------------------------------------------------- /libzip/man/zip_error_to_data.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_to_data.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_error_to_str.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_to_str.html -------------------------------------------------------------------------------- /libzip/man/zip_error_to_str.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_to_str.man -------------------------------------------------------------------------------- /libzip/man/zip_error_to_str.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_error_to_str.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_errors.html -------------------------------------------------------------------------------- /libzip/man/zip_errors.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_errors.man -------------------------------------------------------------------------------- /libzip/man/zip_errors.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_errors.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_fclose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fclose.html -------------------------------------------------------------------------------- /libzip/man/zip_fclose.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fclose.man -------------------------------------------------------------------------------- /libzip/man/zip_fclose.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fclose.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_fdopen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fdopen.html -------------------------------------------------------------------------------- /libzip/man/zip_fdopen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fdopen.man -------------------------------------------------------------------------------- /libzip/man/zip_fdopen.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fdopen.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_add.html -------------------------------------------------------------------------------- /libzip/man/zip_file_add.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_add.man -------------------------------------------------------------------------------- /libzip/man/zip_file_add.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_add.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_attributes_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_attributes_init.html -------------------------------------------------------------------------------- /libzip/man/zip_file_attributes_init.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_attributes_init.man -------------------------------------------------------------------------------- /libzip/man/zip_file_attributes_init.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_attributes_init.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_extra_field_delete.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_extra_field_delete.man -------------------------------------------------------------------------------- /libzip/man/zip_file_extra_field_get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_extra_field_get.html -------------------------------------------------------------------------------- /libzip/man/zip_file_extra_field_get.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_extra_field_get.man -------------------------------------------------------------------------------- /libzip/man/zip_file_extra_field_get.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_extra_field_get.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_extra_field_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_extra_field_set.html -------------------------------------------------------------------------------- /libzip/man/zip_file_extra_field_set.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_extra_field_set.man -------------------------------------------------------------------------------- /libzip/man/zip_file_extra_field_set.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_extra_field_set.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_extra_fields_count.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_extra_fields_count.man -------------------------------------------------------------------------------- /libzip/man/zip_file_get_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_get_comment.html -------------------------------------------------------------------------------- /libzip/man/zip_file_get_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_get_comment.man -------------------------------------------------------------------------------- /libzip/man/zip_file_get_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_get_comment.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_get_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_get_error.html -------------------------------------------------------------------------------- /libzip/man/zip_file_get_error.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_get_error.man -------------------------------------------------------------------------------- /libzip/man/zip_file_get_error.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_get_error.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_rename.html -------------------------------------------------------------------------------- /libzip/man/zip_file_rename.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_rename.man -------------------------------------------------------------------------------- /libzip/man/zip_file_rename.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_rename.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_set_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_comment.html -------------------------------------------------------------------------------- /libzip/man/zip_file_set_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_comment.man -------------------------------------------------------------------------------- /libzip/man/zip_file_set_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_comment.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_set_encryption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_encryption.html -------------------------------------------------------------------------------- /libzip/man/zip_file_set_encryption.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_encryption.man -------------------------------------------------------------------------------- /libzip/man/zip_file_set_encryption.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_encryption.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_set_mtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_mtime.html -------------------------------------------------------------------------------- /libzip/man/zip_file_set_mtime.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_mtime.man -------------------------------------------------------------------------------- /libzip/man/zip_file_set_mtime.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_set_mtime.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_file_strerror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_strerror.html -------------------------------------------------------------------------------- /libzip/man/zip_file_strerror.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_strerror.man -------------------------------------------------------------------------------- /libzip/man/zip_file_strerror.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_file_strerror.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_fopen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fopen.html -------------------------------------------------------------------------------- /libzip/man/zip_fopen.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fopen.man -------------------------------------------------------------------------------- /libzip/man/zip_fopen.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fopen.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_fopen_encrypted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fopen_encrypted.html -------------------------------------------------------------------------------- /libzip/man/zip_fopen_encrypted.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fopen_encrypted.man -------------------------------------------------------------------------------- /libzip/man/zip_fopen_encrypted.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fopen_encrypted.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_fread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fread.html -------------------------------------------------------------------------------- /libzip/man/zip_fread.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fread.man -------------------------------------------------------------------------------- /libzip/man/zip_fread.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fread.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_fseek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fseek.html -------------------------------------------------------------------------------- /libzip/man/zip_fseek.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fseek.man -------------------------------------------------------------------------------- /libzip/man/zip_fseek.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_fseek.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_ftell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_ftell.html -------------------------------------------------------------------------------- /libzip/man/zip_ftell.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_ftell.man -------------------------------------------------------------------------------- /libzip/man/zip_ftell.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_ftell.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_get_archive_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_archive_comment.html -------------------------------------------------------------------------------- /libzip/man/zip_get_archive_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_archive_comment.man -------------------------------------------------------------------------------- /libzip/man/zip_get_archive_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_archive_comment.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_get_archive_flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_archive_flag.html -------------------------------------------------------------------------------- /libzip/man/zip_get_archive_flag.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_archive_flag.man -------------------------------------------------------------------------------- /libzip/man/zip_get_archive_flag.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_archive_flag.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_get_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_error.html -------------------------------------------------------------------------------- /libzip/man/zip_get_error.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_error.man -------------------------------------------------------------------------------- /libzip/man/zip_get_error.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_error.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_get_file_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_file_comment.html -------------------------------------------------------------------------------- /libzip/man/zip_get_file_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_file_comment.man -------------------------------------------------------------------------------- /libzip/man/zip_get_file_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_file_comment.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_get_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_name.html -------------------------------------------------------------------------------- /libzip/man/zip_get_name.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_name.man -------------------------------------------------------------------------------- /libzip/man/zip_get_name.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_name.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_get_num_entries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_num_entries.html -------------------------------------------------------------------------------- /libzip/man/zip_get_num_entries.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_num_entries.man -------------------------------------------------------------------------------- /libzip/man/zip_get_num_entries.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_num_entries.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_get_num_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_num_files.html -------------------------------------------------------------------------------- /libzip/man/zip_get_num_files.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_num_files.man -------------------------------------------------------------------------------- /libzip/man/zip_get_num_files.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_get_num_files.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_libzip_version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_libzip_version.html -------------------------------------------------------------------------------- /libzip/man/zip_libzip_version.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_libzip_version.man -------------------------------------------------------------------------------- /libzip/man/zip_libzip_version.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_libzip_version.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_name_locate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_name_locate.html -------------------------------------------------------------------------------- /libzip/man/zip_name_locate.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_name_locate.man -------------------------------------------------------------------------------- /libzip/man/zip_name_locate.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_name_locate.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_open.html -------------------------------------------------------------------------------- /libzip/man/zip_open.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_open.man -------------------------------------------------------------------------------- /libzip/man/zip_open.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_open.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_rename.html -------------------------------------------------------------------------------- /libzip/man/zip_rename.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_rename.man -------------------------------------------------------------------------------- /libzip/man/zip_rename.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_rename.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_set_archive_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_archive_comment.html -------------------------------------------------------------------------------- /libzip/man/zip_set_archive_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_archive_comment.man -------------------------------------------------------------------------------- /libzip/man/zip_set_archive_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_archive_comment.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_set_archive_flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_archive_flag.html -------------------------------------------------------------------------------- /libzip/man/zip_set_archive_flag.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_archive_flag.man -------------------------------------------------------------------------------- /libzip/man/zip_set_archive_flag.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_archive_flag.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_set_default_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_default_password.html -------------------------------------------------------------------------------- /libzip/man/zip_set_default_password.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_default_password.man -------------------------------------------------------------------------------- /libzip/man/zip_set_default_password.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_default_password.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_set_file_comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_file_comment.html -------------------------------------------------------------------------------- /libzip/man/zip_set_file_comment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_file_comment.man -------------------------------------------------------------------------------- /libzip/man/zip_set_file_comment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_file_comment.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_set_file_compression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_file_compression.html -------------------------------------------------------------------------------- /libzip/man/zip_set_file_compression.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_file_compression.man -------------------------------------------------------------------------------- /libzip/man/zip_set_file_compression.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_set_file_compression.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source.html -------------------------------------------------------------------------------- /libzip/man/zip_source.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source.man -------------------------------------------------------------------------------- /libzip/man/zip_source.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_begin_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_begin_write.html -------------------------------------------------------------------------------- /libzip/man/zip_source_begin_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_begin_write.man -------------------------------------------------------------------------------- /libzip/man/zip_source_begin_write.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_begin_write.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_buffer.html -------------------------------------------------------------------------------- /libzip/man/zip_source_buffer.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_buffer.man -------------------------------------------------------------------------------- /libzip/man/zip_source_buffer.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_buffer.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_buffer_fragment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_buffer_fragment.html -------------------------------------------------------------------------------- /libzip/man/zip_source_buffer_fragment.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_buffer_fragment.man -------------------------------------------------------------------------------- /libzip/man/zip_source_buffer_fragment.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_buffer_fragment.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_close.html -------------------------------------------------------------------------------- /libzip/man/zip_source_close.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_close.man -------------------------------------------------------------------------------- /libzip/man/zip_source_close.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_close.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_commit_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_commit_write.html -------------------------------------------------------------------------------- /libzip/man/zip_source_commit_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_commit_write.man -------------------------------------------------------------------------------- /libzip/man/zip_source_commit_write.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_commit_write.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_error.html -------------------------------------------------------------------------------- /libzip/man/zip_source_error.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_error.man -------------------------------------------------------------------------------- /libzip/man/zip_source_error.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_error.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_file.html -------------------------------------------------------------------------------- /libzip/man/zip_source_file.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_file.man -------------------------------------------------------------------------------- /libzip/man/zip_source_file.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_file.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_filep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_filep.html -------------------------------------------------------------------------------- /libzip/man/zip_source_filep.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_filep.man -------------------------------------------------------------------------------- /libzip/man/zip_source_filep.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_filep.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_free.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_free.html -------------------------------------------------------------------------------- /libzip/man/zip_source_free.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_free.man -------------------------------------------------------------------------------- /libzip/man/zip_source_free.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_free.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_function.html -------------------------------------------------------------------------------- /libzip/man/zip_source_function.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_function.man -------------------------------------------------------------------------------- /libzip/man/zip_source_function.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_function.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_is_deleted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_is_deleted.html -------------------------------------------------------------------------------- /libzip/man/zip_source_is_deleted.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_is_deleted.man -------------------------------------------------------------------------------- /libzip/man/zip_source_is_deleted.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_is_deleted.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_is_seekable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_is_seekable.html -------------------------------------------------------------------------------- /libzip/man/zip_source_is_seekable.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_is_seekable.man -------------------------------------------------------------------------------- /libzip/man/zip_source_is_seekable.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_is_seekable.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_keep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_keep.html -------------------------------------------------------------------------------- /libzip/man/zip_source_keep.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_keep.man -------------------------------------------------------------------------------- /libzip/man/zip_source_keep.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_keep.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_layered.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_layered.html -------------------------------------------------------------------------------- /libzip/man/zip_source_layered.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_layered.man -------------------------------------------------------------------------------- /libzip/man/zip_source_layered.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_layered.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_open.html -------------------------------------------------------------------------------- /libzip/man/zip_source_open.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_open.man -------------------------------------------------------------------------------- /libzip/man/zip_source_open.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_open.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_read.html -------------------------------------------------------------------------------- /libzip/man/zip_source_read.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_read.man -------------------------------------------------------------------------------- /libzip/man/zip_source_read.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_read.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_rollback_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_rollback_write.html -------------------------------------------------------------------------------- /libzip/man/zip_source_rollback_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_rollback_write.man -------------------------------------------------------------------------------- /libzip/man/zip_source_rollback_write.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_rollback_write.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_seek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_seek.html -------------------------------------------------------------------------------- /libzip/man/zip_source_seek.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_seek.man -------------------------------------------------------------------------------- /libzip/man/zip_source_seek.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_seek.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_seek_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_seek_write.html -------------------------------------------------------------------------------- /libzip/man/zip_source_seek_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_seek_write.man -------------------------------------------------------------------------------- /libzip/man/zip_source_seek_write.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_seek_write.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_stat.html -------------------------------------------------------------------------------- /libzip/man/zip_source_stat.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_stat.man -------------------------------------------------------------------------------- /libzip/man/zip_source_stat.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_stat.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_tell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_tell.html -------------------------------------------------------------------------------- /libzip/man/zip_source_tell.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_tell.man -------------------------------------------------------------------------------- /libzip/man/zip_source_tell.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_tell.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_tell_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_tell_write.html -------------------------------------------------------------------------------- /libzip/man/zip_source_tell_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_tell_write.man -------------------------------------------------------------------------------- /libzip/man/zip_source_tell_write.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_tell_write.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_win32a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32a.html -------------------------------------------------------------------------------- /libzip/man/zip_source_win32a.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32a.man -------------------------------------------------------------------------------- /libzip/man/zip_source_win32a.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32a.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_win32handle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32handle.html -------------------------------------------------------------------------------- /libzip/man/zip_source_win32handle.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32handle.man -------------------------------------------------------------------------------- /libzip/man/zip_source_win32handle.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32handle.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_win32w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32w.html -------------------------------------------------------------------------------- /libzip/man/zip_source_win32w.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32w.man -------------------------------------------------------------------------------- /libzip/man/zip_source_win32w.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_win32w.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_window_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_window_create.html -------------------------------------------------------------------------------- /libzip/man/zip_source_window_create.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_window_create.man -------------------------------------------------------------------------------- /libzip/man/zip_source_window_create.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_window_create.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_write.html -------------------------------------------------------------------------------- /libzip/man/zip_source_write.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_write.man -------------------------------------------------------------------------------- /libzip/man/zip_source_write.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_write.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_zip.html -------------------------------------------------------------------------------- /libzip/man/zip_source_zip.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_zip.man -------------------------------------------------------------------------------- /libzip/man/zip_source_zip.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_zip.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_source_zip_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_zip_file.html -------------------------------------------------------------------------------- /libzip/man/zip_source_zip_file.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_zip_file.man -------------------------------------------------------------------------------- /libzip/man/zip_source_zip_file.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_source_zip_file.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_stat.html -------------------------------------------------------------------------------- /libzip/man/zip_stat.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_stat.man -------------------------------------------------------------------------------- /libzip/man/zip_stat.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_stat.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_stat_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_stat_init.html -------------------------------------------------------------------------------- /libzip/man/zip_stat_init.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_stat_init.man -------------------------------------------------------------------------------- /libzip/man/zip_stat_init.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_stat_init.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_unchange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange.html -------------------------------------------------------------------------------- /libzip/man/zip_unchange.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange.man -------------------------------------------------------------------------------- /libzip/man/zip_unchange.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_unchange_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange_all.html -------------------------------------------------------------------------------- /libzip/man/zip_unchange_all.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange_all.man -------------------------------------------------------------------------------- /libzip/man/zip_unchange_all.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange_all.mdoc -------------------------------------------------------------------------------- /libzip/man/zip_unchange_archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange_archive.html -------------------------------------------------------------------------------- /libzip/man/zip_unchange_archive.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange_archive.man -------------------------------------------------------------------------------- /libzip/man/zip_unchange_archive.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zip_unchange_archive.mdoc -------------------------------------------------------------------------------- /libzip/man/zipcmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zipcmp.html -------------------------------------------------------------------------------- /libzip/man/zipcmp.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zipcmp.man -------------------------------------------------------------------------------- /libzip/man/zipcmp.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zipcmp.mdoc -------------------------------------------------------------------------------- /libzip/man/zipmerge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zipmerge.html -------------------------------------------------------------------------------- /libzip/man/zipmerge.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zipmerge.man -------------------------------------------------------------------------------- /libzip/man/zipmerge.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/zipmerge.mdoc -------------------------------------------------------------------------------- /libzip/man/ziptool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/ziptool.html -------------------------------------------------------------------------------- /libzip/man/ziptool.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/ziptool.man -------------------------------------------------------------------------------- /libzip/man/ziptool.mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/man/ziptool.mdoc -------------------------------------------------------------------------------- /libzip/regress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/CMakeLists.txt -------------------------------------------------------------------------------- /libzip/regress/add_dir.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_dir.test -------------------------------------------------------------------------------- /libzip/regress/add_from_buffer.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_buffer.test -------------------------------------------------------------------------------- /libzip/regress/add_from_file.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_file.test -------------------------------------------------------------------------------- /libzip/regress/add_from_file_unchange.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_file_unchange.test -------------------------------------------------------------------------------- /libzip/regress/add_from_filep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_filep.c -------------------------------------------------------------------------------- /libzip/regress/add_from_filep.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_filep.test -------------------------------------------------------------------------------- /libzip/regress/add_from_stdin.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_stdin.test -------------------------------------------------------------------------------- /libzip/regress/add_from_zip_closed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_zip_closed.test -------------------------------------------------------------------------------- /libzip/regress/add_from_zip_deflated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_zip_deflated.test -------------------------------------------------------------------------------- /libzip/regress/add_from_zip_deflated2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_zip_deflated2.test -------------------------------------------------------------------------------- /libzip/regress/add_from_zip_stored.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_from_zip_stored.test -------------------------------------------------------------------------------- /libzip/regress/add_stored.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_stored.test -------------------------------------------------------------------------------- /libzip/regress/add_stored_in_memory.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/add_stored_in_memory.test -------------------------------------------------------------------------------- /libzip/regress/bigstored.zh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/bigstored.zh -------------------------------------------------------------------------------- /libzip/regress/bigzero-zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/bigzero-zip.zip -------------------------------------------------------------------------------- /libzip/regress/bogus.zip: -------------------------------------------------------------------------------- 1 | bogus data 2 | -------------------------------------------------------------------------------- /libzip/regress/broken.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/broken.zip -------------------------------------------------------------------------------- /libzip/regress/buffer-fragment-read.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/buffer-fragment-read.test -------------------------------------------------------------------------------- /libzip/regress/buffer-fragment-write.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/buffer-fragment-write.test -------------------------------------------------------------------------------- /libzip/regress/can_clone_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/can_clone_file.c -------------------------------------------------------------------------------- /libzip/regress/cancel_45.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/cancel_45.test -------------------------------------------------------------------------------- /libzip/regress/cancel_90.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/cancel_90.test -------------------------------------------------------------------------------- /libzip/regress/changing-size-muchl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/changing-size-muchl.zip -------------------------------------------------------------------------------- /libzip/regress/changing-size-muchlo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/changing-size-muchlo.zip -------------------------------------------------------------------------------- /libzip/regress/changing-size.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/changing-size.zip -------------------------------------------------------------------------------- /libzip/regress/check_torrentzip_fail.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/check_torrentzip_fail.test -------------------------------------------------------------------------------- /libzip/regress/cleanup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/cleanup.cmake -------------------------------------------------------------------------------- /libzip/regress/clone-buffer-add.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/clone-buffer-add.test -------------------------------------------------------------------------------- /libzip/regress/clone-buffer-delete.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/clone-buffer-delete.test -------------------------------------------------------------------------------- /libzip/regress/clone-buffer-replace.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/clone-buffer-replace.test -------------------------------------------------------------------------------- /libzip/regress/clone-fs-add.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/clone-fs-add.test -------------------------------------------------------------------------------- /libzip/regress/clone-fs-delete.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/clone-fs-delete.test -------------------------------------------------------------------------------- /libzip/regress/clone-fs-replace.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/clone-fs-replace.test -------------------------------------------------------------------------------- /libzip/regress/cm-default.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/cm-default.test -------------------------------------------------------------------------------- /libzip/regress/cm-default.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/cm-default.zip -------------------------------------------------------------------------------- /libzip/regress/convert_to_torrentzip.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/convert_to_torrentzip.test -------------------------------------------------------------------------------- /libzip/regress/count_entries.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/count_entries.test -------------------------------------------------------------------------------- /libzip/regress/create_empty_keep.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/create_empty_keep.test -------------------------------------------------------------------------------- /libzip/regress/delete_add_same.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/delete_add_same.test -------------------------------------------------------------------------------- /libzip/regress/delete_invalid.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/delete_invalid.test -------------------------------------------------------------------------------- /libzip/regress/delete_last.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/delete_last.test -------------------------------------------------------------------------------- /libzip/regress/delete_last_keep.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/delete_last_keep.test -------------------------------------------------------------------------------- /libzip/regress/delete_multiple_last.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/delete_multiple_last.test -------------------------------------------------------------------------------- /libzip/regress/delete_renamed_rename.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/delete_renamed_rename.test -------------------------------------------------------------------------------- /libzip/regress/empty-pkware.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/empty-pkware.zip -------------------------------------------------------------------------------- /libzip/regress/encrypt-1234.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encrypt-1234.zip -------------------------------------------------------------------------------- /libzip/regress/encrypt-aes128.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encrypt-aes128.zip -------------------------------------------------------------------------------- /libzip/regress/encrypt-aes192.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encrypt-aes192.zip -------------------------------------------------------------------------------- /libzip/regress/encrypt-aes256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encrypt-aes256.zip -------------------------------------------------------------------------------- /libzip/regress/encrypt-none.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encrypt-none.zip -------------------------------------------------------------------------------- /libzip/regress/encrypt.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encrypt.test -------------------------------------------------------------------------------- /libzip/regress/encrypt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encrypt.zip -------------------------------------------------------------------------------- /libzip/regress/encrypt_plus_extra.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encrypt_plus_extra.zip -------------------------------------------------------------------------------- /libzip/regress/encryption-remove.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encryption-remove.test -------------------------------------------------------------------------------- /libzip/regress/encryption-stat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/encryption-stat.test -------------------------------------------------------------------------------- /libzip/regress/extra_add.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_add.test -------------------------------------------------------------------------------- /libzip/regress/extra_add_multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_add_multiple.test -------------------------------------------------------------------------------- /libzip/regress/extra_count.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_count.test -------------------------------------------------------------------------------- /libzip/regress/extra_count_by_id.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_count_by_id.test -------------------------------------------------------------------------------- /libzip/regress/extra_delete.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_delete.test -------------------------------------------------------------------------------- /libzip/regress/extra_delete_by_id.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_delete_by_id.test -------------------------------------------------------------------------------- /libzip/regress/extra_field_align.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_field_align.test -------------------------------------------------------------------------------- /libzip/regress/extra_field_align_1-0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_field_align_1-0.zip -------------------------------------------------------------------------------- /libzip/regress/extra_field_align_1-ff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_field_align_1-ff.zip -------------------------------------------------------------------------------- /libzip/regress/extra_field_align_2-0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_field_align_2-0.zip -------------------------------------------------------------------------------- /libzip/regress/extra_field_align_2-ff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_field_align_2-ff.zip -------------------------------------------------------------------------------- /libzip/regress/extra_field_align_3-0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_field_align_3-0.zip -------------------------------------------------------------------------------- /libzip/regress/extra_field_align_3-ff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_field_align_3-ff.zip -------------------------------------------------------------------------------- /libzip/regress/extra_field_align_4-ff.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_field_align_4-ff.zip -------------------------------------------------------------------------------- /libzip/regress/extra_get.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_get.test -------------------------------------------------------------------------------- /libzip/regress/extra_get_by_id.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_get_by_id.test -------------------------------------------------------------------------------- /libzip/regress/extra_set.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_set.test -------------------------------------------------------------------------------- /libzip/regress/extra_set_modify_c.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_set_modify_c.test -------------------------------------------------------------------------------- /libzip/regress/extra_set_modify_l.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/extra_set_modify_l.test -------------------------------------------------------------------------------- /libzip/regress/fdopen_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fdopen_ok.test -------------------------------------------------------------------------------- /libzip/regress/filename_duplicate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/filename_duplicate.zip -------------------------------------------------------------------------------- /libzip/regress/filename_empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/filename_empty.zip -------------------------------------------------------------------------------- /libzip/regress/fileorder.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fileorder.zip -------------------------------------------------------------------------------- /libzip/regress/firstsecond.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/firstsecond.zip -------------------------------------------------------------------------------- /libzip/regress/foo-stored.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/foo-stored.zip -------------------------------------------------------------------------------- /libzip/regress/fopen_multiple.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fopen_multiple.test -------------------------------------------------------------------------------- /libzip/regress/fopen_multiple_reopen.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fopen_multiple_reopen.test -------------------------------------------------------------------------------- /libzip/regress/fopen_unchanged.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fopen_unchanged.c -------------------------------------------------------------------------------- /libzip/regress/fopen_unchanged.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fopen_unchanged.test -------------------------------------------------------------------------------- /libzip/regress/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fread.c -------------------------------------------------------------------------------- /libzip/regress/fread.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fread.test -------------------------------------------------------------------------------- /libzip/regress/fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fseek.c -------------------------------------------------------------------------------- /libzip/regress/fseek_deflated.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fseek_deflated.test -------------------------------------------------------------------------------- /libzip/regress/fseek_fail.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fseek_fail.test -------------------------------------------------------------------------------- /libzip/regress/fseek_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fseek_ok.test -------------------------------------------------------------------------------- /libzip/regress/fuzz_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/fuzz_main.c -------------------------------------------------------------------------------- /libzip/regress/gap-add.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/gap-add.zip -------------------------------------------------------------------------------- /libzip/regress/gap-delete.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/gap-delete.zip -------------------------------------------------------------------------------- /libzip/regress/gap-replace.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/gap-replace.zip -------------------------------------------------------------------------------- /libzip/regress/gap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/gap.zip -------------------------------------------------------------------------------- /libzip/regress/get_comment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/get_comment.test -------------------------------------------------------------------------------- /libzip/regress/hole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/hole.c -------------------------------------------------------------------------------- /libzip/regress/incons-cdoffset.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-cdoffset.zip -------------------------------------------------------------------------------- /libzip/regress/incons-central-crc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-central-crc.zip -------------------------------------------------------------------------------- /libzip/regress/incons-central-date.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-central-date.zip -------------------------------------------------------------------------------- /libzip/regress/incons-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-data.zip -------------------------------------------------------------------------------- /libzip/regress/incons-ef-local-id-size.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-ef-local-id-size.zip -------------------------------------------------------------------------------- /libzip/regress/incons-ef-local-id.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-ef-local-id.zip -------------------------------------------------------------------------------- /libzip/regress/incons-ef-local-size.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-ef-local-size.zip -------------------------------------------------------------------------------- /libzip/regress/incons-eocd-magic-bad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-eocd-magic-bad.zip -------------------------------------------------------------------------------- /libzip/regress/incons-file-count-high.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-file-count-high.zip -------------------------------------------------------------------------------- /libzip/regress/incons-file-count-low.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-file-count-low.zip -------------------------------------------------------------------------------- /libzip/regress/incons-local-crc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-local-crc.zip -------------------------------------------------------------------------------- /libzip/regress/incons-local-filename.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-local-filename.zip -------------------------------------------------------------------------------- /libzip/regress/incons-local-magic-bad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/incons-local-magic-bad.zip -------------------------------------------------------------------------------- /libzip/regress/junk-at-end.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/junk-at-end.zip -------------------------------------------------------------------------------- /libzip/regress/junk-at-start.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/junk-at-start.zip -------------------------------------------------------------------------------- /libzip/regress/junk_at_end.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/junk_at_end.test -------------------------------------------------------------------------------- /libzip/regress/junk_at_start.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/junk_at_start.test -------------------------------------------------------------------------------- /libzip/regress/large-uncompressible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/large-uncompressible -------------------------------------------------------------------------------- /libzip/regress/liboverride-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/liboverride-test.c -------------------------------------------------------------------------------- /libzip/regress/liboverride.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/liboverride.c -------------------------------------------------------------------------------- /libzip/regress/lzma-no-eos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/lzma-no-eos.zip -------------------------------------------------------------------------------- /libzip/regress/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/malloc.c -------------------------------------------------------------------------------- /libzip/regress/manyfiles-zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/manyfiles-zip.zip -------------------------------------------------------------------------------- /libzip/regress/multidisk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/multidisk.zip -------------------------------------------------------------------------------- /libzip/regress/name_locate-cp437.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/name_locate-cp437.test -------------------------------------------------------------------------------- /libzip/regress/name_locate-utf8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/name_locate-utf8.test -------------------------------------------------------------------------------- /libzip/regress/name_locate.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/name_locate.test -------------------------------------------------------------------------------- /libzip/regress/nihtest.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/nihtest.conf.in -------------------------------------------------------------------------------- /libzip/regress/nonrandomopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/nonrandomopen.c -------------------------------------------------------------------------------- /libzip/regress/nonrandomopentest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/nonrandomopentest.c -------------------------------------------------------------------------------- /libzip/regress/open_cons_extrabytes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_cons_extrabytes.test -------------------------------------------------------------------------------- /libzip/regress/open_empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_empty.test -------------------------------------------------------------------------------- /libzip/regress/open_empty_2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_empty_2.test -------------------------------------------------------------------------------- /libzip/regress/open_extrabytes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_extrabytes.test -------------------------------------------------------------------------------- /libzip/regress/open_file_count.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_file_count.test -------------------------------------------------------------------------------- /libzip/regress/open_filename_empty.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_filename_empty.test -------------------------------------------------------------------------------- /libzip/regress/open_incons.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_incons.test -------------------------------------------------------------------------------- /libzip/regress/open_many_fail.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_many_fail.test -------------------------------------------------------------------------------- /libzip/regress/open_many_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_many_ok.test -------------------------------------------------------------------------------- /libzip/regress/open_multidisk.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_multidisk.test -------------------------------------------------------------------------------- /libzip/regress/open_new_but_exists.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_new_but_exists.test -------------------------------------------------------------------------------- /libzip/regress/open_new_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_new_ok.test -------------------------------------------------------------------------------- /libzip/regress/open_nonarchive.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_nonarchive.test -------------------------------------------------------------------------------- /libzip/regress/open_nosuchfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_nosuchfile.test -------------------------------------------------------------------------------- /libzip/regress/open_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_ok.test -------------------------------------------------------------------------------- /libzip/regress/open_too_short.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_too_short.test -------------------------------------------------------------------------------- /libzip/regress/open_truncate.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_truncate.test -------------------------------------------------------------------------------- /libzip/regress/open_zip64_3mf.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_zip64_3mf.test -------------------------------------------------------------------------------- /libzip/regress/open_zip64_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/open_zip64_ok.test -------------------------------------------------------------------------------- /libzip/regress/ossfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/ossfuzz.sh -------------------------------------------------------------------------------- /libzip/regress/preload.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/preload.test -------------------------------------------------------------------------------- /libzip/regress/progress.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/progress.test -------------------------------------------------------------------------------- /libzip/regress/read_seek_read.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/read_seek_read.test -------------------------------------------------------------------------------- /libzip/regress/rename_ascii.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/rename_ascii.test -------------------------------------------------------------------------------- /libzip/regress/rename_cp437.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/rename_cp437.test -------------------------------------------------------------------------------- /libzip/regress/rename_deleted.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/rename_deleted.test -------------------------------------------------------------------------------- /libzip/regress/rename_fail.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/rename_fail.test -------------------------------------------------------------------------------- /libzip/regress/rename_ok.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/rename_ok.test -------------------------------------------------------------------------------- /libzip/regress/rename_ok.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/rename_ok.zip -------------------------------------------------------------------------------- /libzip/regress/rename_utf8.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/rename_utf8.test -------------------------------------------------------------------------------- /libzip/regress/reopen.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/reopen.test -------------------------------------------------------------------------------- /libzip/regress/reopen_partial.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/reopen_partial.test -------------------------------------------------------------------------------- /libzip/regress/reopen_partial_rest.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/reopen_partial_rest.test -------------------------------------------------------------------------------- /libzip/regress/set_comment_all.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/set_comment_all.test -------------------------------------------------------------------------------- /libzip/regress/set_comment_localonly.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/set_comment_localonly.test -------------------------------------------------------------------------------- /libzip/regress/set_comment_revert.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/set_comment_revert.test -------------------------------------------------------------------------------- /libzip/regress/set_file_dostime.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/set_file_dostime.test -------------------------------------------------------------------------------- /libzip/regress/set_file_mtime.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/set_file_mtime.test -------------------------------------------------------------------------------- /libzip/regress/set_file_mtime_pkware.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/set_file_mtime_pkware.test -------------------------------------------------------------------------------- /libzip/regress/short: -------------------------------------------------------------------------------- 1 | short -------------------------------------------------------------------------------- /libzip/regress/source_hole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/source_hole.c -------------------------------------------------------------------------------- /libzip/regress/stat_index_cp437_guess.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stat_index_cp437_guess.test -------------------------------------------------------------------------------- /libzip/regress/stat_index_cp437_raw.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stat_index_cp437_raw.test -------------------------------------------------------------------------------- /libzip/regress/stat_index_fileorder.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stat_index_fileorder.test -------------------------------------------------------------------------------- /libzip/regress/stat_index_streamed.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stat_index_streamed.test -------------------------------------------------------------------------------- /libzip/regress/stat_index_utf8_guess.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stat_index_utf8_guess.test -------------------------------------------------------------------------------- /libzip/regress/stat_index_utf8_raw.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stat_index_utf8_raw.test -------------------------------------------------------------------------------- /libzip/regress/stat_index_utf8_strict.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stat_index_utf8_strict.test -------------------------------------------------------------------------------- /libzip/regress/stat_index_zip64.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stat_index_zip64.test -------------------------------------------------------------------------------- /libzip/regress/stored-no-eos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/stored-no-eos.zip -------------------------------------------------------------------------------- /libzip/regress/streamed-zip64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/streamed-zip64.zip -------------------------------------------------------------------------------- /libzip/regress/streamed.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/streamed.zip -------------------------------------------------------------------------------- /libzip/regress/test-cp437-fc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/test-cp437-fc.zip -------------------------------------------------------------------------------- /libzip/regress/test-cp437.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/test-cp437.zip -------------------------------------------------------------------------------- /libzip/regress/test-utf8-unmarked.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/test-utf8-unmarked.zip -------------------------------------------------------------------------------- /libzip/regress/test-utf8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/test-utf8.zip -------------------------------------------------------------------------------- /libzip/regress/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/test.zip -------------------------------------------------------------------------------- /libzip/regress/test2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/test2.zip -------------------------------------------------------------------------------- /libzip/regress/test_open_multiple.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/test_open_multiple.zip -------------------------------------------------------------------------------- /libzip/regress/testbuffer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testbuffer.zip -------------------------------------------------------------------------------- /libzip/regress/testbuffer_reopen.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testbuffer_reopen.zip -------------------------------------------------------------------------------- /libzip/regress/testbzip2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testbzip2.zip -------------------------------------------------------------------------------- /libzip/regress/testchanged.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testchanged.zip -------------------------------------------------------------------------------- /libzip/regress/testchangedlocal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testchangedlocal.zip -------------------------------------------------------------------------------- /libzip/regress/testcomment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testcomment.zip -------------------------------------------------------------------------------- /libzip/regress/testcomment13.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testcomment13.zip -------------------------------------------------------------------------------- /libzip/regress/testcommentremoved.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testcommentremoved.zip -------------------------------------------------------------------------------- /libzip/regress/testdeflated.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testdeflated.zip -------------------------------------------------------------------------------- /libzip/regress/testdeflated2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testdeflated2.zip -------------------------------------------------------------------------------- /libzip/regress/testdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testdir.zip -------------------------------------------------------------------------------- /libzip/regress/testempty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testempty.zip -------------------------------------------------------------------------------- /libzip/regress/testextrabytes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testextrabytes.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-UTF8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-UTF8.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-cp437.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-cp437.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-ef.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-ef.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-lzma.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-lzma.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-plus-extra.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-plus-extra.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-stored-dos.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-stored-dos.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-torrentzip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-torrentzip.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-xz.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-xz.zip -------------------------------------------------------------------------------- /libzip/regress/testfile-zstd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile-zstd.zip -------------------------------------------------------------------------------- /libzip/regress/testfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libzip/regress/testfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile.zip -------------------------------------------------------------------------------- /libzip/regress/testfile0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile0.zip -------------------------------------------------------------------------------- /libzip/regress/testfile2014.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/testfile2014.zip -------------------------------------------------------------------------------- /libzip/regress/teststdin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/teststdin.zip -------------------------------------------------------------------------------- /libzip/regress/teststored.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/teststored.zip -------------------------------------------------------------------------------- /libzip/regress/truncate_empty_keep.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/truncate_empty_keep.test -------------------------------------------------------------------------------- /libzip/regress/tryopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/tryopen.c -------------------------------------------------------------------------------- /libzip/regress/utf-8-standardization.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/utf-8-standardization.test -------------------------------------------------------------------------------- /libzip/regress/want_torrentzip_stat.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/want_torrentzip_stat.test -------------------------------------------------------------------------------- /libzip/regress/zip-in-archive-comment.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zip-in-archive-comment.test -------------------------------------------------------------------------------- /libzip/regress/zip-in-archive-comment.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zip-in-archive-comment.zip -------------------------------------------------------------------------------- /libzip/regress/zip64-3mf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zip64-3mf.zip -------------------------------------------------------------------------------- /libzip/regress/zip64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zip64.zip -------------------------------------------------------------------------------- /libzip/regress/zip64_creation.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zip64_creation.test -------------------------------------------------------------------------------- /libzip/regress/zip64_stored_creation.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zip64_stored_creation.test -------------------------------------------------------------------------------- /libzip/regress/zip_read_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zip_read_fuzzer.cc -------------------------------------------------------------------------------- /libzip/regress/zip_read_fuzzer.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zip_read_fuzzer.dict -------------------------------------------------------------------------------- /libzip/regress/zipcmp_zip_dir.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zipcmp_zip_dir.test -------------------------------------------------------------------------------- /libzip/regress/zipcmp_zip_dir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/zipcmp_zip_dir.zip -------------------------------------------------------------------------------- /libzip/regress/ziptool_regress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/regress/ziptool_regress.c -------------------------------------------------------------------------------- /libzip/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/src/CMakeLists.txt -------------------------------------------------------------------------------- /libzip/src/diff_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/src/diff_output.c -------------------------------------------------------------------------------- /libzip/src/diff_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/src/diff_output.h -------------------------------------------------------------------------------- /libzip/src/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/src/getopt.c -------------------------------------------------------------------------------- /libzip/src/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/src/getopt.h -------------------------------------------------------------------------------- /libzip/src/zipcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/src/zipcmp.c -------------------------------------------------------------------------------- /libzip/src/zipmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/src/zipmerge.c -------------------------------------------------------------------------------- /libzip/src/ziptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/libzip/src/ziptool.c -------------------------------------------------------------------------------- /nodejs/README.md: -------------------------------------------------------------------------------- 1 | 查看helloworld.mjs示例文件及其注释 2 | 3 | 依赖ffi-napi 4 | -------------------------------------------------------------------------------- /nodejs/helloworld.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/nodejs/helloworld.mjs -------------------------------------------------------------------------------- /phigros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/phigros.h -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- 1 | 查看helloworld.py示例文件 2 | -------------------------------------------------------------------------------- /python/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/python/helloworld.py -------------------------------------------------------------------------------- /script-py/PhigrosLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/script-py/PhigrosLibrary.py -------------------------------------------------------------------------------- /script-py/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/script-py/test.py -------------------------------------------------------------------------------- /single.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/single.txt -------------------------------------------------------------------------------- /src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/cJSON.c -------------------------------------------------------------------------------- /src/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/cJSON.h -------------------------------------------------------------------------------- /src/openssl/__DECC_INCLUDE_EPILOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/__DECC_INCLUDE_EPILOGUE.H -------------------------------------------------------------------------------- /src/openssl/__DECC_INCLUDE_PROLOGUE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/__DECC_INCLUDE_PROLOGUE.H -------------------------------------------------------------------------------- /src/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/aes.h -------------------------------------------------------------------------------- /src/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/asn1.h -------------------------------------------------------------------------------- /src/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/asn1_mac.h -------------------------------------------------------------------------------- /src/openssl/asn1err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/asn1err.h -------------------------------------------------------------------------------- /src/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/asn1t.h -------------------------------------------------------------------------------- /src/openssl/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/async.h -------------------------------------------------------------------------------- /src/openssl/asyncerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/asyncerr.h -------------------------------------------------------------------------------- /src/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/bio.h -------------------------------------------------------------------------------- /src/openssl/bioerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/bioerr.h -------------------------------------------------------------------------------- /src/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/blowfish.h -------------------------------------------------------------------------------- /src/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/bn.h -------------------------------------------------------------------------------- /src/openssl/bnerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/bnerr.h -------------------------------------------------------------------------------- /src/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/buffer.h -------------------------------------------------------------------------------- /src/openssl/buffererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/buffererr.h -------------------------------------------------------------------------------- /src/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/camellia.h -------------------------------------------------------------------------------- /src/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cast.h -------------------------------------------------------------------------------- /src/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cmac.h -------------------------------------------------------------------------------- /src/openssl/cmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cmp.h -------------------------------------------------------------------------------- /src/openssl/cmp_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cmp_util.h -------------------------------------------------------------------------------- /src/openssl/cmperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cmperr.h -------------------------------------------------------------------------------- /src/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cms.h -------------------------------------------------------------------------------- /src/openssl/cmserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cmserr.h -------------------------------------------------------------------------------- /src/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/comp.h -------------------------------------------------------------------------------- /src/openssl/comperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/comperr.h -------------------------------------------------------------------------------- /src/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/conf.h -------------------------------------------------------------------------------- /src/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/conf_api.h -------------------------------------------------------------------------------- /src/openssl/conferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/conferr.h -------------------------------------------------------------------------------- /src/openssl/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/configuration.h -------------------------------------------------------------------------------- /src/openssl/conftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/conftypes.h -------------------------------------------------------------------------------- /src/openssl/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/core.h -------------------------------------------------------------------------------- /src/openssl/core_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/core_dispatch.h -------------------------------------------------------------------------------- /src/openssl/core_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/core_names.h -------------------------------------------------------------------------------- /src/openssl/core_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/core_object.h -------------------------------------------------------------------------------- /src/openssl/crmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/crmf.h -------------------------------------------------------------------------------- /src/openssl/crmferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/crmferr.h -------------------------------------------------------------------------------- /src/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/crypto.h -------------------------------------------------------------------------------- /src/openssl/cryptoerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cryptoerr.h -------------------------------------------------------------------------------- /src/openssl/cryptoerr_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cryptoerr_legacy.h -------------------------------------------------------------------------------- /src/openssl/ct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ct.h -------------------------------------------------------------------------------- /src/openssl/cterr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/cterr.h -------------------------------------------------------------------------------- /src/openssl/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/decoder.h -------------------------------------------------------------------------------- /src/openssl/decodererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/decodererr.h -------------------------------------------------------------------------------- /src/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/des.h -------------------------------------------------------------------------------- /src/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/dh.h -------------------------------------------------------------------------------- /src/openssl/dherr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/dherr.h -------------------------------------------------------------------------------- /src/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/dsa.h -------------------------------------------------------------------------------- /src/openssl/dsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/dsaerr.h -------------------------------------------------------------------------------- /src/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/dtls1.h -------------------------------------------------------------------------------- /src/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/e_os2.h -------------------------------------------------------------------------------- /src/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ebcdic.h -------------------------------------------------------------------------------- /src/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ec.h -------------------------------------------------------------------------------- /src/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ecdh.h -------------------------------------------------------------------------------- /src/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ecdsa.h -------------------------------------------------------------------------------- /src/openssl/ecerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ecerr.h -------------------------------------------------------------------------------- /src/openssl/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/encoder.h -------------------------------------------------------------------------------- /src/openssl/encodererr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/encodererr.h -------------------------------------------------------------------------------- /src/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/engine.h -------------------------------------------------------------------------------- /src/openssl/engineerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/engineerr.h -------------------------------------------------------------------------------- /src/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/err.h -------------------------------------------------------------------------------- /src/openssl/ess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ess.h -------------------------------------------------------------------------------- /src/openssl/esserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/esserr.h -------------------------------------------------------------------------------- /src/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/evp.h -------------------------------------------------------------------------------- /src/openssl/evperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/evperr.h -------------------------------------------------------------------------------- /src/openssl/fips_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/fips_names.h -------------------------------------------------------------------------------- /src/openssl/fipskey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/fipskey.h -------------------------------------------------------------------------------- /src/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/hmac.h -------------------------------------------------------------------------------- /src/openssl/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/http.h -------------------------------------------------------------------------------- /src/openssl/httperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/httperr.h -------------------------------------------------------------------------------- /src/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/idea.h -------------------------------------------------------------------------------- /src/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/kdf.h -------------------------------------------------------------------------------- /src/openssl/kdferr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/kdferr.h -------------------------------------------------------------------------------- /src/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/lhash.h -------------------------------------------------------------------------------- /src/openssl/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/macros.h -------------------------------------------------------------------------------- /src/openssl/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/md2.h -------------------------------------------------------------------------------- /src/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/md4.h -------------------------------------------------------------------------------- /src/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/md5.h -------------------------------------------------------------------------------- /src/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/mdc2.h -------------------------------------------------------------------------------- /src/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/modes.h -------------------------------------------------------------------------------- /src/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/obj_mac.h -------------------------------------------------------------------------------- /src/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/objects.h -------------------------------------------------------------------------------- /src/openssl/objectserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/objectserr.h -------------------------------------------------------------------------------- /src/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ocsp.h -------------------------------------------------------------------------------- /src/openssl/ocsperr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ocsperr.h -------------------------------------------------------------------------------- /src/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/opensslconf.h -------------------------------------------------------------------------------- /src/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/opensslv.h -------------------------------------------------------------------------------- /src/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ossl_typ.h -------------------------------------------------------------------------------- /src/openssl/param_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/param_build.h -------------------------------------------------------------------------------- /src/openssl/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/params.h -------------------------------------------------------------------------------- /src/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/pem.h -------------------------------------------------------------------------------- /src/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/pem2.h -------------------------------------------------------------------------------- /src/openssl/pemerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/pemerr.h -------------------------------------------------------------------------------- /src/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/pkcs12.h -------------------------------------------------------------------------------- /src/openssl/pkcs12err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/pkcs12err.h -------------------------------------------------------------------------------- /src/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/pkcs7.h -------------------------------------------------------------------------------- /src/openssl/pkcs7err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/pkcs7err.h -------------------------------------------------------------------------------- /src/openssl/prov_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/prov_ssl.h -------------------------------------------------------------------------------- /src/openssl/proverr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/proverr.h -------------------------------------------------------------------------------- /src/openssl/provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/provider.h -------------------------------------------------------------------------------- /src/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/rand.h -------------------------------------------------------------------------------- /src/openssl/randerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/randerr.h -------------------------------------------------------------------------------- /src/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/rc2.h -------------------------------------------------------------------------------- /src/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/rc4.h -------------------------------------------------------------------------------- /src/openssl/rc5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/rc5.h -------------------------------------------------------------------------------- /src/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ripemd.h -------------------------------------------------------------------------------- /src/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/rsa.h -------------------------------------------------------------------------------- /src/openssl/rsaerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/rsaerr.h -------------------------------------------------------------------------------- /src/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/safestack.h -------------------------------------------------------------------------------- /src/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/seed.h -------------------------------------------------------------------------------- /src/openssl/self_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/self_test.h -------------------------------------------------------------------------------- /src/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/sha.h -------------------------------------------------------------------------------- /src/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/srp.h -------------------------------------------------------------------------------- /src/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/srtp.h -------------------------------------------------------------------------------- /src/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ssl.h -------------------------------------------------------------------------------- /src/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ssl2.h -------------------------------------------------------------------------------- /src/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ssl3.h -------------------------------------------------------------------------------- /src/openssl/sslerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/sslerr.h -------------------------------------------------------------------------------- /src/openssl/sslerr_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/sslerr_legacy.h -------------------------------------------------------------------------------- /src/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/stack.h -------------------------------------------------------------------------------- /src/openssl/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/store.h -------------------------------------------------------------------------------- /src/openssl/storeerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/storeerr.h -------------------------------------------------------------------------------- /src/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/symhacks.h -------------------------------------------------------------------------------- /src/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/tls1.h -------------------------------------------------------------------------------- /src/openssl/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/trace.h -------------------------------------------------------------------------------- /src/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ts.h -------------------------------------------------------------------------------- /src/openssl/tserr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/tserr.h -------------------------------------------------------------------------------- /src/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/txt_db.h -------------------------------------------------------------------------------- /src/openssl/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/types.h -------------------------------------------------------------------------------- /src/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/ui.h -------------------------------------------------------------------------------- /src/openssl/uierr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/uierr.h -------------------------------------------------------------------------------- /src/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/whrlpool.h -------------------------------------------------------------------------------- /src/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/x509.h -------------------------------------------------------------------------------- /src/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/x509_vfy.h -------------------------------------------------------------------------------- /src/openssl/x509err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/x509err.h -------------------------------------------------------------------------------- /src/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/x509v3.h -------------------------------------------------------------------------------- /src/openssl/x509v3err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/openssl/x509v3err.h -------------------------------------------------------------------------------- /src/phigros.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/phigros.cxx -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/src/save.c -------------------------------------------------------------------------------- /tips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7aGiven/PhigrosLibrary/HEAD/tips.txt --------------------------------------------------------------------------------