Codebase list libmawk / scrub-obsolete/main tools / proto.sh
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

proto.sh @scrub-obsolete/mainraw · 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