* updated zip udated zip from version 1.15 to version 3.0.2 * Check for double defined macro * Update miniz.h * Update zip.c * Update zip.c --------- Co-authored-by: Kim Kulling <kimkulling@users.noreply.github.com>
303 B
303 B
Contribution Rules/Coding Standards
No need to throw away your coding style, just do your best to follow default clang-format style.
Apply clang-format to the source files before commit:
for file in $(git ls-files | \grep -E '\.(c|h)$' | \grep -v -- '#')
do
clang-format -i $file
done