mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
15 lines
308 B
Python
15 lines
308 B
Python
|
|
from __future__ import print_function
|
||
|
|
import sys
|
||
|
|
|
||
|
|
def main():
|
||
|
|
for line in sys.stdin:
|
||
|
|
line = line.strip()
|
||
|
|
if not line.startswith("#STRUCT_SIZER"):
|
||
|
|
continue
|
||
|
|
line = line[14:]
|
||
|
|
line = line.replace("#", "")
|
||
|
|
print(line)
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|