WONKY



LOG | FILES | OVERVIEW


#ifndef WONKY_DEBUG_DENOTED_H
#define WONKY_DEBUG_DENOTED_H WONKY_DEBUG_DENOTED_H
#include <denoted.h>
#include <common.h>

_Bool is_valid_denotation_enum(enum Denotation_Type denotation_type);
_Bool is_valid_function_specifier(enum Function_Specifier function_specifier);

_Bool is_valid_denoted(struct Denoted *denoted);
_Bool is_valid_denoted_base(struct Denoted_Base *denoted);
_Bool is_valid_denoted_function(struct Denoted_Function *denoted);
_Bool is_valid_denoted_object(struct Denoted_Object *denoted);
_Bool is_valid_denoted_type(struct Denoted_Type *denoted);
_Bool is_valid_denoted_enum(struct Denoted_Enum *denoted);
_Bool is_valid_denoted_enum_const(struct Denoted_Enum_Const *denoted);
_Bool is_valid_denoted_struct_union(struct Denoted_Struct_Union *denoted);
_Bool is_valid_denoted_statement(struct Denoted_Statement *denoted);
_Bool is_valid_denoted_prototype(struct Denotation_Prototype *denoted);


#endif