wifi-tally_Oostendam/nodemcu-firmware/sdk-overrides/include/stdbool.h

13 lines
263 B
C
Raw Normal View History

2021-09-27 19:52:27 +00:00
#ifndef __stdbool_h__
#define __stdbool_h__
// For compatibility with SDK. Boo.
typedef unsigned char bool;
#define BOOL bool
#define true (1)
#define false (0)
#define TRUE true
#define FALSE false
#endif