mirror of
https://github.com/n64decomp/sm64
synced 2026-04-23 15:43:53 +00:00
6 lines
130 B
Python
6 lines
130 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
for line in sys.stdin:
|
|
if line.strip():
|
|
print('#include "{}"'.format(line.strip()))
|