10 lines
100 B
C
10 lines
100 B
C
#ifndef ERROR_H
|
|
#define ERROR_H
|
|
|
|
typedef struct {
|
|
int stat;
|
|
const char *src;
|
|
} error_t;
|
|
|
|
#endif
|