You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
305 B
12 lines
305 B
7 years ago
|
#ifndef _ERRORS_H
|
||
|
#define _ERRORS_H
|
||
|
#include <stdatomic.h>
|
||
|
|
||
|
typedef _Atomic unsigned int _en_ecode_t;
|
||
|
|
||
|
const char* _ene_get_header_message(_en_ecode_t code);
|
||
|
const char* _ene_get_detailed_message(_en_ecode_t code);
|
||
|
char* _ene_get_full_message(char *buf, int bs, _en_ecode_t code);
|
||
|
|
||
|
#endif /* _ERRORS_H */
|