-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathformat_cpp.sh
More file actions
executable file
·11 lines (6 loc) · 992 Bytes
/
Copy pathformat_cpp.sh
File metadata and controls
executable file
·11 lines (6 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
EXE=./astyle
$EXE --options=none --style=bsd --indent=spaces=4 -Z -K -c --lineend=linux --suffix=none --max-code-length=80 --align-pointer=middle --min-conditional-indent=0 --indent-col1-comments --indent-preprocessor --recursive --quiet "../../../*.cpp"
$EXE --options=none --style=bsd --indent=spaces=4 -Z -K -c --lineend=linux --suffix=none --max-code-length=80 --align-pointer=middle --min-conditional-indent=0 --indent-col1-comments --indent-preprocessor --recursive --quiet "../../../*.c"
$EXE --options=none --style=bsd --indent=spaces=4 -Z -K -c --lineend=linux --suffix=none --max-code-length=80 --align-pointer=middle --min-conditional-indent=0 --indent-col1-comments --indent-preprocessor --recursive --quiet "../../../*.hpp"
$EXE --options=none --style=bsd --indent=spaces=4 -Z -K -c --lineend=linux --suffix=none --max-code-length=80 --align-pointer=middle --min-conditional-indent=0 --indent-col1-comments --indent-preprocessor --recursive --quiet "../../../*.h"