genheader.py 215 B

123456789101112131415161718
  1. #!/usr/bin/env python3
  2. import sys
  3. ifile = sys.argv[1]
  4. ofile = sys.argv[2]
  5. templ = '''#pragma once
  6. int %s() {
  7. return 42;
  8. }
  9. '''
  10. funname = open(ifile).readline().strip()
  11. open(ofile, 'w').write(templ % funname)