#ifndef _PYC_ASTREE_H #define _PYC_ASTREE_H #include "ASTNode.h" PycRef BuildFromCode(PycRef code, PycModule* mod); void print_src(PycRef node, PycModule* mod, int indent); void decompyle(PycRef code, PycModule* mod, int indent = 0); #endif