comparison src/headers/tomcrypt_argchk.h @ 280:59400faa4b44 libtomcrypt-orig libtomcrypt-1.05

Re-import libtomcrypt 1.05 for cleaner propagating. From crypt-1.05.tar.bz2, SHA1 of 88250202bb51570dc64f7e8f1c943cda9479258f
author Matt Johnston <matt@ucc.asn.au>
date Wed, 08 Mar 2006 12:58:00 +0000
parents
children d5faf4814ddb
comparison
equal deleted inserted replaced
-1:000000000000 280:59400faa4b44
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 $ */