File: clang-format-all.sh

package info (click to toggle)
libmaxmind-db-writer-perl 0.300003-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,336 kB
  • sloc: ansic: 3,059; perl: 2,895; makefile: 6; sh: 4
file content (7 lines) | stat: -rwxr-xr-x 142 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#!/bin/sh

format="clang-format -i -style=file"

for file in "c/tree.c" "c/tree.h" "lib/MaxMind/DB/Writer/Tree.xs"; do
    $format $file
done