summaryrefslogtreecommitdiffhomepage
path: root/types.c
diff options
context:
space:
mode:
Diffstat (limited to 'types.c')
-rw-r--r--types.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/types.c b/types.c
index d0b933d..3a3e35c 100644
--- a/types.c
+++ b/types.c
@@ -30,6 +30,15 @@
#include "ucode/vm.h"
#include "ucode/program.h"
+static char *uc_default_search_path[] = { LIB_SEARCH_PATH };
+
+uc_parse_config_t uc_default_parse_config = {
+ .module_search_path = {
+ .count = ARRAY_SIZE(uc_default_search_path),
+ .entries = uc_default_search_path
+ }
+};
+
uc_type_t
ucv_type(uc_value_t *uv)
{
@@ -2245,3 +2254,12 @@ ucv_freeall(uc_vm_t *vm)
{
ucv_gc_common(vm, true);
}
+
+void
+uc_search_path_init(uc_search_path_t *search_path)
+{
+ size_t i;
+
+ for (i = 0; i < ARRAY_SIZE(uc_default_search_path); i++)
+ uc_vector_push(search_path, xstrdup(uc_default_search_path[i]));
+}