- Indent any changed .c / .h files.

Intended to be used just before a commit.
This commit is contained in:
ccremers 2005-06-07 14:56:17 +00:00
parent 1331f5e7a3
commit eb36abee75

5
src/reindent.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
#
# Indent any changed files, ending in .c or .h
#
svn st | grep "^M.*\.[ch]$"| awk '{print $2}' | xargs indent