Files
assimp/contrib/zip/CONTRIBUTING.md
mosfet80 83d7216726 updated zip (#5499)
* 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>
2024-05-27 16:19:48 +02:00

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