view src/value.h @ 182:8cd4314a144f

big cleanup for rewrite of execution logic
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 27 Sep 2019 14:33:38 +0200
parents 3ec2b2edb977
children 263256062455
line wrap: on
line source

#ifndef value_h
#define value_h

#define _GNU_SOURCE

#include <stdbool.h>
#include <stdint.h>

#include "expr.h"
#include "func.h"
#include "types.h"

#include "base/str.h"
#include "base/vec.h"

/**
 * @file value.h
 * @brief Types and functions for describing values and references to values.
 * @addtogroup language
 * @{
 */

/**
 * @}
 */

#endif