#!/bin/bash
# I like to have all of my c files indented.. so I just have this nice 
# little shell script here to do that for me
for c in `ls *.c *.h`;do indent -npsl -sc -sob -nbap -bl -nbc -ncdb -ncs -nss $c;done
rm *.c~ *.h~
