This commit is contained in:
2025-07-17 13:46:22 -04:00
parent 3a9d52c513
commit 7674010155
9 changed files with 95 additions and 28 deletions

View File

@@ -1,9 +1,14 @@
#ifndef ERROR_H
#define ERROR_H
#include <stdbool.h>
typedef struct {
int stat;
bool null;
int status;
const char *src;
} error_t;
error_t unwrap(error_t);
#endif