summaryrefslogtreecommitdiff
path: root/gobject/marshal-genstrings.pl
blob: 93fceb46c64871163807e1903af99fca9f1c35cd (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

open (List, "gmarshal.list");

while (<List>) {
    next unless /^[A-Z]/;
    s/^/"g_cclosure_marshal_/; s/:/__/; s/,/_/g; s/$/",/;
    print;
}