12345678910111213141516171819202122232425262728 |
- /^\w*#.*/ {next}
- /^\w*;.*/ {next}
- /LIBRARY/ {name = $2; print "# export list for", name; next}
- /^\w*NAME/ ||
- /^\w*VERSION/ ||
- /^\w*EXPORTS/ ||
- /^\w*HEAPSIZE/ ||
- /^\w*STACKSIZE/ ||
- /^\w*STUB/ {next}
- /[a-zA-Z]+/ {sub(/\;/, ""); print "_" $1}
|