#include "posix.h"
#include "functions/common.h"
#include "functions/file.h"
#include "lang/interpreter.h"
#include "log.h"
static bool
func_full_path(struct workspace *wk, uint32_t rcvr, uint32_t args_node, uint32_t *obj)
{
if (!interp_args(wk, args_node, NULL, NULL, NULL)) {
return false;
}
make_obj(wk, obj, obj_string)->dat.str = get_obj(wk, rcvr)->dat.file;
return true;
}
const struct func_impl_name impl_tbl_file[] = {
{ "full_path", func_full_path },
{ NULL, NULL },
};