forked from Mirrors/freeswitch
7 lines
114 B
Perl
Executable File
7 lines
114 B
Perl
Executable File
#!/usr/bin/perl
|
|
while(<>) {
|
|
s/SWITCH_DECLARE_CONSTRUCTOR//g;
|
|
s/SWITCH_DECLARE[^\(]*\((.*?)\)/$1/g;
|
|
print;
|
|
}
|