mirror of
https://github.com/pret/pokestadium.git
synced 2026-08-09 03:14:27 -05:00
12 lines
210 B
Python
Executable File
12 lines
210 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import re
|
|
|
|
with open(sys.argv[1], "r") as f:
|
|
fd = f.read()
|
|
|
|
funcs = re.findall("(^[a-zA-Z0-9*_]+ .*\(.*\)) {$", fd, re.MULTILINE)
|
|
for func in funcs:
|
|
print(func + ";")
|