]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/less/mkfuncs.awk
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / less / mkfuncs.awk
1 BEGIN { FS="("; state = 0 }
2
3 /^      public/ { ftype = $0; state = 1 }
4
5 { if (state == 1)
6         state = 2
7   else if (state == 2)
8         { print ftype,$1,"();"; state = 0 }
9 }