Initial revision

This commit is contained in:
Akinori Ito
2001-11-08 05:14:08 +00:00
commit 68a07bf03b
305 changed files with 104639 additions and 0 deletions

13
funcname0.awk Normal file
View File

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