💾 Archived View for uscoffings.net › retro-computing › systems › TI994a › x99tape › x99tape_src › my… captured on 2023-03-20 at 21:53:56.

View Raw

More Information

⬅️ Previous capture (2022-06-04)

-=-=-=-=-=-=-

/*
	Portable TI99 tape encoder/decoder

	my_bool.h: define the bool type

	Raphael Nabet 2002


#if C99

#include <stdbool.h>

#else

/*
	Default: define bool as an int


#ifndef bool
	#define bool int
#endif
#ifndef true
	#define true 1
#endif
#ifndef false
	#define false 0
#endif

#endif