summaryrefslogtreecommitdiff
path: root/lib/minitasn1/errors.h
blob: 38395f619fd55f8f46cba143772bcf71a851e64d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 *      Copyright (C) 2002 Fabio Fiorina
 *
 * This file is part of LIBASN1.
 *
 * LIBASN1 is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * LIBASN1 is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 */

#ifndef ERRORS_H
#define ERRORS_H


#include "int.h"
#include "errors_int.h"

#ifdef LIBTASN1_DEBUG
# ifdef __FILE__
#  ifdef __LINE__
#   define _libtasn1_assert() fprintf(stderr, "LIBTASN1_ASSERT: %s:%d\n", __FILE__,__LINE__);
#  else
#   define _libtasn1_assert() 
#  endif
# else /* __FILE__ defined */
#  define _libtasn1_assert() 
# endif
#else /* no debug */
# define _libtasn1_assert() 
#endif

const char* libtasn1_strerror(int error);
void libtasn1_perror(int error);

#ifdef LIBTASN1_DEBUG
 void _libtasn1_log( const char *fmt, ...);
#else

/* These macros only work with C99 compliant compilers
 */
# ifdef C99_MACROS
#  define _libtasn1_log(...)
# else
#  define _libtasn1_log _libtasn1_null_log
void _libtasn1_null_log( void*, ...);
# endif /* C99_MACROS */

#endif /* DEBUG */

#endif /* ERRORS_H */