Sign in
third-party-mirror
/
libraw
/
bc28a8a79f522fd720d98db658485647ed4fdd03
/
.
/
clist2c.pl
blob: 622a5a65fe3802b37e668d2ec2352e68fe0fc5ea [
file
]
#!/usr/bin/perl
while
(<>)
{
chomp
;
s
/^
\s
+/
/;
s/
^
\s
+
\*\s
+/
/;
s/
^
\s
+/
/;
s/
\"
/
\\\"
/
g
;
s
/
\s
+
$
//;
print
"\"$_\",\n"
;
}