@kv  0.0.4
Library for graph problems in C and Python
error.h
1 
18 #if !defined(AT_CORE_H_INSIDE)
19 #error "Only <at/core.h> can be included directly."
20 #endif
21 #ifndef AT_ERROR_H
22 #define AT_ERROR_H
23 #include <at/core.h>
24 AT_BEGIN_DECLS
28 typedef struct AtError{
29  char* message;
30 }AtError;
36 void
37 at_error_set(AtError** error, char* msg_pattern, ...);
42 void
43 at_error_destroy(AtError **error_ptr);
44 AT_END_DECLS
45 #endif
error
Definition: error.h:28
char * message
Definition: error.h:29