#ifndef _PYC_ASTREE_H #define _PYC_ASTREE_H #include "ASTNode.h" PycRef BuildFromCode(PycRef code, PycModule* mod); void print_src(PycRef node, PycModule* mod, std::ostream& pyc_output); void decompyle(PycRef code, PycModule* mod, std::ostream& pyc_output); #endif