Apply clang-format across entire codebase
* Add .clang-format config (PointerAlignment: Right,
AllowShortIfStatementsOnASingleLine: Never, ColumnLimit: 100)
* Format all .c/.h files: pointer style, braces on single-line
ifs/loops, wrapped long function signatures, include sorting
* Rename draw_fill_rect to draw_rect, update all call sites
* Replace insertion sort in _sort_by_z with qsort