1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-01 00:14:52 +00:00

7 lines
114 B
Perl
Raw Normal View History

#!/usr/bin/perl
while(<>) {
s/SWITCH_DECLARE_CONSTRUCTOR//g;
s/SWITCH_DECLARE[^\(]*\((.*?)\)/$1/g;
print;
}