Codebase list libmawk / fresh-releases/upstream tools / proto.sh
fresh-releases/upstream

Tree @fresh-releases/upstream (Download .tar.gz)

proto.sh @fresh-releases/upstreamraw · 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