toxcore/other/astyle/format-source

10 lines
248 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ -z "$ASTYLE" ]; then
ASTYLE=astyle
fi
SOURCES=`find . -name "*.[ch]" -and -not -name "*.in.*" -and -not -wholename "*crypto_pwhash*" -and -not -wholename "./super_donators/*"`
2016-08-21 06:15:49 +08:00
$ASTYLE -n --options=other/astyle/astylerc $SOURCES