mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
11 lines
253 B
C
11 lines
253 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);
|
|
|
|
void decompyle(PycRef<PycCode> code, PycModule* mod);
|
|
|
|
#endif
|