Files
Pyarmor-Static-Unpack-1shot/ASTree.h
2009-07-27 08:42:59 +00:00

12 lines
281 B
C

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