Mercurial > dropbear
comparison src/headers/tomcrypt_argchk.h @ 191:1c15b283127b libtomcrypt-orig
Import of libtomcrypt 1.02 with manual path rename rearrangement etc
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Fri, 06 May 2005 13:23:02 +0000 |
parents | |
children | 39d5d58461d6 |
comparison
equal
deleted
inserted
replaced
143:5d99163f7e32 | 191:1c15b283127b |
---|---|
1 /* Defines the LTC_ARGCHK macro used within the library */ | |
2 /* ARGTYPE is defined in mycrypt_cfg.h */ | |
3 #if ARGTYPE == 0 | |
4 | |
5 #include <signal.h> | |
6 | |
7 /* this is the default LibTomCrypt macro */ | |
8 void crypt_argchk(char *v, char *s, int d); | |
9 #define LTC_ARGCHK(x) if (!(x)) { crypt_argchk(#x, __FILE__, __LINE__); } | |
10 | |
11 #elif ARGTYPE == 1 | |
12 | |
13 /* fatal type of error */ | |
14 #define LTC_ARGCHK(x) assert((x)) | |
15 | |
16 #elif ARGTYPE == 2 | |
17 | |
18 #define LTC_ARGCHK(x) | |
19 | |
20 #endif | |
21 |