2005-06-07 15:56:17 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2010-11-10 20:58:33 +00:00
|
|
|
# Indent any files ending in .c or .h
|
2005-06-07 15:56:17 +01:00
|
|
|
#
|
2010-11-10 20:58:33 +00:00
|
|
|
# Apparently unstable behaviour is possible; a stupid fix for my
|
|
|
|
# concrete problem was to always run it twice.
|
|
|
|
#
|
|
|
|
indent *.c *.h
|
|
|
|
indent *.c *.h
|
|
|
|
|