13 lines
185 B
C
13 lines
185 B
C
#ifndef COMPILE_H_
|
|
#define COMPILE_H_
|
|
|
|
#include "script-block.h"
|
|
|
|
struct ast_node;
|
|
|
|
extern enum bshell_status bshell_compile(
|
|
struct ast_node *src,
|
|
bshell_scriptblock *dest);
|
|
|
|
#endif
|