Codebase list libmawk / debian/latest tools / proto.sh
debian/latest

Tree @debian/latest (Download .tar.gz)

proto.sh @debian/latestraw · 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