f7cf297602
Change-Id: I7999b23fbef86a9a5d8d6fe4e80b9bd23d5b9d87
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 }
|
|
}
|