#ifndef VALEURS_H #define VALEURS_H #include "lists.h" typedef List Env; typedef struct val { Type type; Env env; } Val; #endif /* VALEURS_H */