aboutsummaryrefslogblamecommitdiffstats
path: root/funcname0.awk
blob: 9a9152fd0e1a00bb96959a40bf4b052e63539e33 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                         
BEGIN {
  print "FuncList w3mFuncList[] = {";
  n = 0;
}
/^#/ { next }
{
  print "/*" n "*/ {\"" $1 "\"," $2 "},";
  n++;
} 
END {
  print "{ NULL, NULL }"
  print "};"
}