New repo setup

This commit is contained in:
2024-05-28 14:26:46 -05:00
commit 9ee197f57b
97 changed files with 11047 additions and 0 deletions

28
include/types/status.h Normal file
View File

@@ -0,0 +1,28 @@
#ifndef KERNEL_STATUS_H
#define KERNEL_STATUS_H
#ifdef __cplusplus
extern "C"
{
#endif
enum error_t
{
ENONE = 0,
EUNKNOWN = -1,
ENOSYS = -2,
EEOF = -3,
ENOFILE = -4,
ENOMEM = -5,
EINVAL = -6,
EIO = -7,
EEXISTS = -8,
EPIPE = -9,
EFULL = -10
};
#ifdef __cplusplus
}
#endif
#endif