Files
yait/core/e.h
2025-07-17 13:46:22 -04:00

15 lines
163 B
C

#ifndef ERROR_H
#define ERROR_H
#include <stdbool.h>
typedef struct {
bool null;
int status;
const char *src;
} error_t;
error_t unwrap(error_t);
#endif