Mercurial > dropbear
comparison libtomcrypt/src/headers/tomcrypt_argchk.h @ 297:79bf1023cf11 agent-client
propagate from branch 'au.asn.ucc.matt.dropbear' (head 0501e6f661b5415eb76f3b312d183c3adfbfb712)
to branch 'au.asn.ucc.matt.dropbear.cli-agent' (head 01038174ec27245b51bd43a66c01ad930880f67b)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 21 Mar 2006 16:20:59 +0000 |
parents | 1b9e69c058d2 |
children | 0cbe8f6dbf9e |
comparison
equal
deleted
inserted
replaced
225:ca7e76d981d9 | 297:79bf1023cf11 |
---|---|
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 $ */ |