| 1234567891011121314151617181920212223242526272829303132 | #!/bin/shcd "$(dirname $0)/../src"echo "Running clang-format in $(pwd)"find . -regex '.*\.[chm]p*' -exec clang-format -i {} \;# Revert third-party codegit checkout \    events/imKStoUCS.* \    hidapi \    joystick/controller_type.c \    joystick/controller_type.h \    joystick/hidapi/steam/controller_constants.h \    joystick/hidapi/steam/controller_structs.h \    libm \    stdlib/SDL_malloc.c \    stdlib/SDL_qsort.c \    stdlib/SDL_strtokr.c \    video/arm \    video/khronos \    video/x11/edid-parse.c \    video/yuv2rgbclang-format -i hidapi/SDL_hidapi.c# Revert generated codegit checkout dynapi/SDL_dynapi_overrides.hgit checkout dynapi/SDL_dynapi_procs.hgit checkout render/metal/SDL_shaders_metal_*.hecho "clang-format complete!"
 |