File size: 343 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import os.path
for cur_path, dirs, files in os.walk('.'):
if cur_path == '.':
for f in files:
if f.endswith('.h'):
print(f)
fo = open(f, 'w')
fo.write('#include "_fake_defines.h"\n')
fo.write('#include "_fake_typedefs.h"\n')
fo.close()
|