blob: 6251a9fb398c725d2c761dc094fd3011d8fece82 [file] [log] [blame]
Eli Bendersky3921e8e2010-05-21 09:05:39 +03001import sys
2sys.path.insert(0, '../..')
3
4from pycparser import c_parser, c_ast, parse_file
5
6
7if __name__ == "__main__":
8 ast = parse_file('zc_pp.c', use_cpp=True, cpp_path="../cpp.exe")
9
10