6 lines
91 B
Bash
Executable file
6 lines
91 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "char* tokentab[] = {"
|
|
awk '/^#define/ { print "\"" $2 "\"," }'
|
|
echo "};"
|
|
|