initial import from SVN
diff --git a/utils/internal/zz_parse.py b/utils/internal/zz_parse.py
new file mode 100644
index 0000000..6251a9f
--- /dev/null
+++ b/utils/internal/zz_parse.py
@@ -0,0 +1,10 @@
+import sys

+sys.path.insert(0, '../..')

+

+from pycparser import c_parser, c_ast, parse_file

+

+

+if __name__ == "__main__":

+    ast = parse_file('zc_pp.c', use_cpp=True, cpp_path="../cpp.exe")

+    

+