Codebase list libmawk / fb4188c tools / proto.sh
fb4188c

Tree @fb4188c (Download .tar.gz)

proto.sh @fb4188craw · history · blame

1
2
3
4
5
6
#!/bin/sh
for n in *.h *.c
do
	sed "/PROTO(/ { s/PROTO(//; s/[,][ 	]*[(]/(/; s/);[ 	]*$/;/; }" < $n > $n.tmp
	mv $n.tmp $n
done