repo.or.cz
/
glib.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update German translation
[glib.git]
/
gobject
/
marshal-genstrings.pl
blob
93fceb46c64871163807e1903af99fca9f1c35cd
1
#!/usr/bin/perl
2
3
open
(
List
,
"gmarshal.list"
);
4
5
while
(<
List
>) {
6
next unless
/^[A-Z]/
;
7
s/^/"g_cclosure_marshal_/
;
s/:/__/
;
s/,/_/g
;
s/$/",/
;
8
print
;
9
}