CryptoAuthLib
Microchip CryptoAuthentication Library
atca_bool.h
Go to the documentation of this file.
1 
29 #ifndef _ATCA_BOOL_H
30 #define _ATCA_BOOL_H
31 
32 #if defined(_MSC_VER) && (_MSC_VER <= 1700)
33 // VS2012 and earlier don't support stdbool.h
34  #ifndef __cplusplus
35  #define bool unsigned char
36  #define false 0
37  #define true 1
38  #endif
39 #else
40  #include <stdbool.h>
41 #endif
42 
43 #endif