Intial commit
[profile/ivi/w3m.git] / funcname0.awk
1 BEGIN {
2   print "FuncList w3mFuncList[] = {";
3   n = 0;
4 }
5 /^#/ { next }
6 {
7   print "/*" n "*/ {\"" $1 "\"," $2 "},";
8   n++;
9
10 END {
11   print "{ NULL, NULL }"
12   print "};"
13 }