comparison libtomcrypt/src/headers/tomcrypt_argchk.h @ 293:9d110777f345 contrib-blacklist

propagate from branch 'au.asn.ucc.matt.dropbear' (head 7ad1775ed65e75dbece27fe6b65bf1a234db386a) to branch 'au.asn.ucc.matt.dropbear.contrib.blacklist' (head 1d86a4f0a401cc68c2670d821a2f6366c37af143)
author Matt Johnston <matt@ucc.asn.au>
date Fri, 10 Mar 2006 06:31:29 +0000
parents 1b9e69c058d2
children 0cbe8f6dbf9e
comparison
equal deleted inserted replaced
247:c07de41b53d7 293:9d110777f345
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 $ */