diff options
Diffstat (limited to '')
-rwxr-xr-x | fmt.sh | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#!/bin/sh + +clang-format \ + -style=file \ + -i \ + src/*.c \ + src/*.h \ + `find plugins -type f -name '*.c'` \ + `find plugins -type f -name '*.h'` |