Codebase list libmawk / 30b66529-447f-407d-a34b-b48ac0e29c37/upstream tools / proto.sh
30b66529-447f-407d-a34b-b48ac0e29c37/upstream

Tree @30b66529-447f-407d-a34b-b48ac0e29c37/upstream (Download .tar.gz)

proto.sh @30b66529-447f-407d-a34b-b48ac0e29c37/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