Mercurial > dropbear
comparison libtomcrypt/src/headers/tomcrypt_argchk.h @ 285:1b9e69c058d2
propagate from branch 'au.asn.ucc.matt.ltc.dropbear' (head 20dccfc09627970a312d77fb41dc2970b62689c3)
to branch 'au.asn.ucc.matt.dropbear' (head fdf4a7a3b97ae5046139915de7e40399cceb2c01)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 08 Mar 2006 13:23:58 +0000 |
parents | |
children | 0cbe8f6dbf9e |
comparison
equal
deleted
inserted
replaced
281:997e6f7dc01e | 285:1b9e69c058d2 |
---|---|
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 | |
22 | |
23 /* $Source: /cvs/libtom/libtomcrypt/src/headers/tomcrypt_argchk.h,v $ */ | |
24 /* $Revision: 1.2 $ */ | |
25 /* $Date: 2005/05/05 14:35:58 $ */ |