minix/dist/nvi/common/options.awk
Lionel Sambuc 3e1db26a5a Termcap update, replacing elvis by nvi.
Removing elvis, importing nvi, ctags, updating libedit.

Change-Id: I881eb04d2dc64cf112facd992de1114e1a59107f
2013-01-24 07:44:38 +01:00

22 lines
450 B
Awk

# Id: options.awk,v 10.1 1995/06/08 19:00:01 bostic Exp (Berkeley) Date: 1995/06/08 19:00:01
/^\/\* O_[0-9A-Z_]*/ {
opt = $2
printf("#define %s %d\n", opt, cnt++)
ofs = FS
FS="\""
do getline
while ($1 != " {L(")
FS=ofs
opt_name = $2
if (opt_name < prev_name) {
printf "missorted %s: \"%s\" < \"%s\"\n", opt, opt_name, prev_name >"/dev/stderr"
exit 1
}
prev_name = opt_name
next
}
END {
printf("#define O_OPTIONCOUNT %d\n", cnt);
}