#!/bin/bash

for f in *.c
do
echo -n "$f "
date
emacs -batch $f -l ~/.emacs -f reformat-c-buffer -f save-buffer
echo -n "$f "
date
done
