w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

functable.awk (134B)


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