aboutsummaryrefslogtreecommitdiff
path: root/src/env.h
blob: 6f3e1691b284bae98ba8777434a2573fce682715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef ENV_H
#define ENV_H

// #include "value.h"
typedef struct value * _value_t;

#include "hashtable.h"

typedef struct symbol_table *env_t;
#define ENV_EMPTY NULL

typedef void (*env_destroy_func)(char *key, _value_t value);

struct symbol_table {
    hashtable_t table;

    struct symbol_table *parent;
    size_t refs;

    env_destroy_func destroy_func;
};

env_t env_create(env_t parent, env_destroy_func destroy_func);
env_t env_copy(env_t env);
void env_destroy(env_t env);

#endif