mirror of
https://github.com/opentx/opentx.git
synced 2025-07-19 22:35:12 +03:00
#2106 - Unify the include guards in all headers
This commit is contained in:
parent
491886a5c2
commit
b3b534cd6d
1 changed files with 30 additions and 0 deletions
30
radio/util/include-guard.py
Executable file
30
radio/util/include-guard.py
Executable file
|
@ -0,0 +1,30 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import sys, os
|
||||
|
||||
for filename in sys.argv[1:]:
|
||||
f = file(filename, "r")
|
||||
lines = f.readlines()
|
||||
f.close()
|
||||
|
||||
newguard = "_" + os.path.basename(filename).upper().replace(".", "_") + "_"
|
||||
|
||||
for i, line in enumerate(lines):
|
||||
line = line.strip()
|
||||
if line.startswith("#ifndef "):
|
||||
guard = line[8:]
|
||||
if guard == newguard:
|
||||
break
|
||||
if lines[i+1].strip() == "#define %s" % guard:
|
||||
print filename, ":", guard, "=>", newguard
|
||||
lines[i] = "#ifndef %s\n" % newguard
|
||||
lines[i+1] = "#define %s\n" % newguard
|
||||
end = -1
|
||||
while not lines[end].strip().startswith("#endif"):
|
||||
end -= 1
|
||||
lines[end] = "#endif // %s\n" % newguard
|
||||
f = file(filename, "w")
|
||||
f.write("".join(lines))
|
||||
f.close()
|
||||
break
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue