FreeCalypso > hg > gsm-codec-lib
view libgsmhr1/namespace.awk @ 540:5595293e4f29
gsmx-to-tw5a utility: use emit_hex_frame() in libtest
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 22 Sep 2024 00:36:35 +0000 |
parents | b0333fa167c3 |
children |
line wrap: on
line source
# This awk script generates namespace.h from namespace.list BEGIN { print "/* Auto-generated; do not edit! */" print "" print "#ifndef namespace_h" print "#define namespace_h" print "" } { for (i = 1; i <= NF; i++) { if ($i ~ /^#/) break; printf "#define %s gsmhr__%s\n", $i, $i; } } END { print "" print "#endif" }