| Revision: | 1046 |
| Committed: | Mon Aug 29 13:19:38 2016 UTC (9 years, 2 months ago) by alloc |
| File size: | 317 byte(s) |
| Log Message: | Daodan: Added Windows MinGW and build batch file |
| # | Content |
|---|---|
| 1 | # ftrans.awk --- handle data file transitions |
| 2 | # |
| 3 | # user supplies beginfile() and endfile() functions |
| 4 | # |
| 5 | # Arnold Robbins, arnold@skeeve.com, Public Domain |
| 6 | # November 1992 |
| 7 | |
| 8 | FNR == 1 { |
| 9 | if (_filename_ != "") |
| 10 | endfile(_filename_) |
| 11 | _filename_ = FILENAME |
| 12 | beginfile(FILENAME) |
| 13 | } |
| 14 | |
| 15 | END { endfile(_filename_) } |