Sherman-Morrison/tools/restyle.sh
Francois Coppens c0d21dd9af Various
2022-10-02 10:20:11 +02:00

16 lines
293 B
Bash

#!/usr/bin/env bash
STYLE='--style=LLVM'
FORMATER='clang-format -i'
if [[ -z $SMVARS ]]
then
echo '$SMVARS is not set. Please source '/path/to/Sherman-Morrison/smvars.sh''
exit 1
fi
for ext in c cc cpp h hpp
do
find $SMROOT -type f -iname "*.${ext}" -exec $FORMATER $STYLE {} \;
done