14 lines
186 B
Awk
Executable File
14 lines
186 B
Awk
Executable File
#!/usr/bin/awk -f
|
|
|
|
BEGIN {
|
|
print "// generated file, do not edit by hand !"
|
|
}
|
|
|
|
{
|
|
printf "#define CR_%s %d\n", $2, $1
|
|
}
|
|
|
|
END {
|
|
print "// generated file, do not edit by hand !"
|
|
}
|