mirror of
https://github.com/LedgerHQ/openpgp-card-app
synced 2024-11-09 07:10:30 +00:00
7 lines
211 B
C
7 lines
211 B
C
|
#define LEDGER_ASSERT(test, message) \
|
||
|
do { \
|
||
|
if (!(test)) { \
|
||
|
return; \
|
||
|
} \
|
||
|
} while (0)
|