view libgsmhr1/namespace.awk @ 522:4d2cccaeb4a7

libtest: implement TW-TS-005 reader function Spec reference: https://www.freecalypso.org/specs/tw-ts-005-v010002.txt
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 19 Sep 2024 03:08:47 +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"
}