/* ANY-LICENSE V1.0 ---------------- You can use these files under any license approved by the Open Source Initiative, preferrably one of the popular licenses, as long as the license you choose is compatible to the dependencies of these files. See http://www.opensource.org/licenses/ for a list of approved licenses. Author: Martin Furter Project: Tins AVR Lib Repository: http://repos.borg.ch/projects/tins_avr_lib/trunk Copyright: 2016 */ #ifndef TAL_STDINT_H #define TAL_STDINT_H /** \defgroup STDINT Integer helpers @{ */ #include #ifndef __cplusplus /// C type for C++ bool. typedef uint8_t bool; /// C version of C++ 'true' constant. static const uint8_t true = 1; /// C version of C++ 'false' constant. static const uint8_t false = 0; #endif // !__cplusplus /// @} #endif // TAL_STDINT_H