w3m

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

funcname2.awk (113B)


      1 BEGIN { n=0 }
      2 /^#/ {next}
      3 {
      4   if (cmd[$2] == "") {
      5     print "#define " $2 " " n;
      6     cmd[$2] = n;
      7   }
      8   n++;
      9 }
     10