12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef __TC_CONSTANTS_H__
- #define __TC_CONSTANTS_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <stdbool.h>
- #ifndef NULL
- #define NULL ((void *)0)
- #endif
- #define TC_CRYPTO_SUCCESS 1
- #define TC_CRYPTO_FAIL 0
- #define TC_ZERO_BYTE 0x00
- #ifdef __cplusplus
- }
- #endif
- #endif
|