From c5ca5e82a79374efc946856fc8e5921ab0f7f733 Mon Sep 17 00:00:00 2001 From: ngiddings Date: Mon, 19 Apr 2021 06:56:12 -0500 Subject: [PATCH] Added more status codes --- include/types/status.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/include/types/status.h b/include/types/status.h index 4e45672..0f35b73 100644 --- a/include/types/status.h +++ b/include/types/status.h @@ -3,8 +3,11 @@ enum status_t { S_OK = 0, - S_BAD_SYSCALL, - S_OUT_OF_MEMORY, + S_NULL_POINTER, S_OUT_OF_BOUNDS, - S_NULL_POINTER + S_INVALID_ARGUMENT, + S_OUT_OF_MEMORY, + S_DOESNT_EXIST, + S_EXISTS, + S_BAD_SYSCALL }; \ No newline at end of file