nghttp2/mkstatichdtbl.py

10 lines
260 B
Python
Raw Normal View History

2013-10-15 18:23:10 +02:00
#!/usr/bin/env python
import re, sys
for line in sys.stdin:
m = re.match(r'(\d+)\s+(\S+)\s+(\S+)?', line)
print '/* {} */ MAKE_NV("{}", "{}"),'\
.format(m.group(1),
m.group(2),
m.group(3) if m.group(3) else '')