WONKY



LOG | FILES | OVERVIEW


#ifndef WONKY_DEBUG_VALUE_H
#define WONKY_DEBUG_VALUE_H WONKY_DEBUG_VALUE_H
#include <value.h>
#include <common.h>

_Bool is_valid_expression_value_type(enum Expression_Value_Type expression_value_type);

_Bool is_valid_value(struct Expression_Value *value);
_Bool is_valid_lvalue(struct Expression_Value_LValue *value);
_Bool is_valid_value_constant(struct Expression_Value_Constant *value);
_Bool is_valid_rvalue(struct Expression_Value_RValue *value);
_Bool is_valid_value_function_designator(struct Expression_Value_Function_Designator *value);

#endif