mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
7 lines
114 B
Perl
7 lines
114 B
Perl
|
#!/usr/bin/perl
|
||
|
while(<>) {
|
||
|
s/SWITCH_DECLARE_CONSTRUCTOR//g;
|
||
|
s/SWITCH_DECLARE[^\(]*\((.*?)\)/$1/g;
|
||
|
print;
|
||
|
}
|