Codebase list w3m / debian/0.5.3-5 functable.awk
debian/0.5.3-5

Tree @debian/0.5.3-5 (Download .tar.gz)

functable.awk @debian/0.5.3-5raw · history · blame

1
2
3
4
5
6
7
8
9
BEGIN {
  print "#include <stdio.h>"
  print "#include \"funcname1.h\""
  print "%%"
}
/^#/ { next }
{
  print $1 " FUNCNAME_" $2;
}