#----------------------------------------------------------------- # 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()
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
c_files | Folder | 0755 |
|
|
c-to-c.py | File | 1.42 KB | 0644 |
|
cdecl.py | File | 3.05 KB | 0644 |
|
explore_ast.py | File | 5.27 KB | 0644 |
|
func_calls.py | File | 1.08 KB | 0644 |
|
func_defs.py | File | 1.08 KB | 0644 |
|
rewrite_ast.py | File | 599 B | 0644 |
|
using_cpp_libc.py | File | 744 B | 0644 |
|
using_gcc_E_libc.py | File | 797 B | 0644 |
|