mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-18 08:30:06 +00:00
5 lines
95 B
Awk
5 lines
95 B
Awk
|
$1 == "#define" && NF >= 3 {
|
||
|
sub(/^XC/,"GDK",$2)
|
||
|
printf("%s = %s,\n",toupper($2),$3)
|
||
|
}
|