File: clang-format-all.sh

package info (click to toggle)
libmaxmind-db-writer-perl 0.300004-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,572 kB
  • sloc: ansic: 3,059; perl: 2,902; makefile: 5; 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