#!/bin/sh
for i in *.c *.h
do
	mv $i $i.tmp
	cat $i.tmp | sed 's/private/_private_/g' > $i
	rm $i.tmp
done
