17 lines
371 B
C
17 lines
371 B
C
#ifndef BSHELL_COMPILE_H_
|
|
#define BSHELL_COMPILE_H_
|
|
|
|
#include <bshell/command/function.h>
|
|
#include <bshell/runtime/script-block.h>
|
|
|
|
struct bshell_ast_node;
|
|
|
|
extern enum bshell_status bshell_compile(
|
|
struct bshell_ast_node *src,
|
|
bshell_scriptblock *dest);
|
|
extern enum bshell_status bshell_compile_function(
|
|
struct bshell_ast_node *src,
|
|
bshell_function **out);
|
|
|
|
#endif
|