1 /*
2  * Error functions
3  *
4  * Copyright (C) 2010-2017, Joachim Metz <joachim.metz@gmail.com>
5  *
6  * Refer to AUTHORS for acknowledgements.
7  *
8  * This software is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This software is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this software.  If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #if !defined( _LIBFCACHE_INTERNAL_ERROR_H )
23 #define _LIBFCACHE_INTERNAL_ERROR_H
24 
25 #include <common.h>
26 #include <file_stream.h>
27 #include <types.h>
28 
29 #if !defined( HAVE_LOCAL_LIBFCACHE )
30 #include <libfcache/error.h>
31 #endif
32 
33 #include "libfcache_extern.h"
34 
35 #if defined( __cplusplus )
36 extern "C" {
37 #endif
38 
39 #if !defined( HAVE_LOCAL_LIBFCACHE )
40 
41 LIBFCACHE_EXTERN \
42 void libfcache_error_free(
43       libfcache_error_t **error );
44 
45 LIBFCACHE_EXTERN \
46 int libfcache_error_fprint(
47      libfcache_error_t *error,
48      FILE *stream );
49 
50 LIBFCACHE_EXTERN \
51 int libfcache_error_sprint(
52      libfcache_error_t *error,
53      char *string,
54      size_t size );
55 
56 LIBFCACHE_EXTERN \
57 int libfcache_error_backtrace_fprint(
58      libfcache_error_t *error,
59      FILE *stream );
60 
61 LIBFCACHE_EXTERN \
62 int libfcache_error_backtrace_sprint(
63      libfcache_error_t *error,
64      char *string,
65      size_t size );
66 
67 #endif /* !defined( HAVE_LOCAL_LIBFCACHE ) */
68 
69 #if defined( __cplusplus )
70 }
71 #endif
72 
73 #endif /* !defined( _LIBFCACHE_INTERNAL_ERROR_H ) */
74 
75