scyther/src/reindent.sh

11 lines
198 B
Bash
Raw Normal View History

#!/bin/sh
#
# Indent any files ending in .c or .h
#
# Apparently unstable behaviour is possible; a stupid fix for my
# concrete problem was to always run it twice.
#
indent *.c *.h
indent *.c *.h