some libs done

This commit is contained in:
2025-07-13 18:20:10 -04:00
parent 6245723dc0
commit 174e80f4f8
8 changed files with 65 additions and 16 deletions

9
lib/e.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef ERROR_H
#define ERROR_H
typedef struct {
int stat;
const char *src;
} error_t;
#endif