You've already forked smb-decomp
mirror of
https://github.com/encounter/smb-decomp.git
synced 2026-03-30 11:38:28 -07:00
18 lines
349 B
Awk
18 lines
349 B
Awk
|
|
#!/usr/bin/awk -f
|
||
|
|
# List all functions in the .text section, excluding ones that start with lbl_
|
||
|
|
|
||
|
|
BEGIN { inTextSection = 0 }
|
||
|
|
|
||
|
|
/^.* section layout/ {
|
||
|
|
inTextSection = ($1 == ".text");
|
||
|
|
}
|
||
|
|
|
||
|
|
inTextSection && /(entry of \.text)/ {
|
||
|
|
if (!match($4, /^lbl_/))
|
||
|
|
print("// ? "$4"();");
|
||
|
|
}
|
||
|
|
|
||
|
|
inTextSection && $4=="4" {
|
||
|
|
print("// ? "$5"();");
|
||
|
|
}
|