📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 21:51:59
📂
/ (Root)
/
opt
/
alt
/
python38
/
share
/
doc
/
alt-python38-pycparser
/
examples
📍 /opt/alt/python38/share/doc/alt-python38-pycparser/examples
🔄 Refresh
✏️
Editing: using_cpp_libc.py
Read Only
#----------------------------------------------------------------- # pycparser: using_cpp_libc.py # # Shows how to use the provided 'cpp' (on Windows, substitute for # the 'real' cpp if you're on Linux/Unix) and "fake" libc includes # to parse a file that includes standard C headers. # # Copyright (C) 2008-2015, Eli Bendersky # License: BSD #----------------------------------------------------------------- import sys from pycparser import parse_file if __name__ == "__main__": if len(sys.argv) > 1: filename = sys.argv[1] else: filename = 'examples/c_files/year.c' ast = parse_file(filename, use_cpp=True, cpp_path='cpp', cpp_args=r'-Iutils/fake_libc_include') ast.show()
💾 Save Changes
❌ Cancel