Files
bshell/bshell.runtime/include/bshell/compile.h
T
2026-05-30 19:52:24 +01:00

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