12 lines
180 B
C
12 lines
180 B
C
#ifndef ENV_H
|
|
#define ENV_H
|
|
|
|
#include "am.h"
|
|
#include "store.h"
|
|
|
|
void env_init(am_t *am, store_t *store);
|
|
void env_fetch(am_t *am);
|
|
void env_set(am_t *am, store_t *store);
|
|
|
|
#endif
|