Files
yait/core/e.h
2025-07-14 23:07:13 -04:00

10 lines
100 B
C

#ifndef ERROR_H
#define ERROR_H
typedef struct {
int stat;
const char *src;
} error_t;
#endif