summaryrefslogtreecommitdiffstats
path: root/constants.awk
blob: c9395c1e2530c7363c45a0adcd6967505a77af18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BEGIN {
    print "static PY_CONSTANT_REC py_constants[] = {";
}

{
    printf("    {\"%s\", %25s},\n", $1,$1);
}

END {
    print "    {NULL}";
    print "};"
}