edfb3e24a3
bshell: the front-end binary bshell.runtime: contains the parser, compiler, and classes needed to run bshell scripts bshell.core: contains the builtin commandlets and aliases
12 lines
237 B
C
12 lines
237 B
C
#ifndef BSHELL_RUNTIME_SCOPE_H_
|
|
#define BSHELL_RUNTIME_SCOPE_H_
|
|
|
|
#include <fx/collections/hashtable.h>
|
|
|
|
struct bshell_runtime_scope;
|
|
|
|
extern fx_hashtable *bshell_runtime_scope_get_functions(
|
|
struct bshell_runtime_scope *scope);
|
|
|
|
#endif
|