view runtime/bool.h @ 56:d2f9b0a9403d

Initial experiment with goto and switch
author Mike Pavone <pavone@retrodev.com>
date Thu, 08 Oct 2009 01:52:38 -0400
parents 31f8182f3433
children 04baa003de5a
line wrap: on
line source

#ifndef BOOL_H_
#define BOOL_H_
#include "object.h"

OBegin
	int32_t val;
Object(Boolean)

#define Yes add_ref((object *)val_yes)
#define No add_ref((object *)val_no)

extern t_Boolean * val_yes;
extern t_Boolean * val_no;


#endif //BOOL_H_