mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
9 lines
158 B
Awk
9 lines
158 B
Awk
BEGIN { FS="("; state = 0 }
|
|
|
|
/^ public/ { ftype = $0; state = 1 }
|
|
|
|
{ if (state == 1)
|
|
state = 2
|
|
else if (state == 2)
|
|
{ print ftype,$1,"();"; state = 0 }
|
|
}
|