diff options
author | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-08 05:14:08 +0000 |
---|---|---|
committer | Akinori Ito <aito@eie.yz.yamagata-u.ac.jp> | 2001-11-08 05:14:08 +0000 |
commit | 68a07bf03b7624c9924065cce9ffa45497225834 (patch) | |
tree | c2adb06a909a8594445e4a3f8587c4bad46e3ecd /funcname0.awk | |
download | w3m-68a07bf03b7624c9924065cce9ffa45497225834.tar.gz w3m-68a07bf03b7624c9924065cce9ffa45497225834.zip |
Initial revision
Diffstat (limited to 'funcname0.awk')
-rw-r--r-- | funcname0.awk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/funcname0.awk b/funcname0.awk new file mode 100644 index 0000000..9a9152f --- /dev/null +++ b/funcname0.awk @@ -0,0 +1,13 @@ +BEGIN { + print "FuncList w3mFuncList[] = {"; + n = 0; +} +/^#/ { next } +{ + print "/*" n "*/ {\"" $1 "\"," $2 "},"; + n++; +} +END { + print "{ NULL, NULL }" + print "};" +} |