Files
yait/lib/e.h
2025-07-13 18:20:10 -04:00

10 lines
100 B
C

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