16 lines
388 B
C
16 lines
388 B
C
#ifndef BSHELL_RUNTIME_SCOPE_H_
|
|
#define BSHELL_RUNTIME_SCOPE_H_
|
|
|
|
#include <bshell/runtime/var.h>
|
|
#include <fx/collections/hashtable.h>
|
|
|
|
struct bshell_runtime_scope;
|
|
|
|
extern fx_hashtable *bshell_runtime_scope_get_functions(
|
|
struct bshell_runtime_scope *scope);
|
|
extern bshell_variable *bshell_runtime_scope_define_variable(
|
|
struct bshell_runtime_scope *scope,
|
|
const char *name);
|
|
|
|
#endif
|