diff options
author | bd <bdunahu@operationnull.com> | 2025-03-08 11:36:17 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-08 11:36:17 -0500 |
commit | c5f26a0bfdaafc8d49c88d2016df1724b64e5271 (patch) | |
tree | 964ced6682b34a1ee536c1a86e6c5b367ef17a77 /inc/response.h | |
parent | 3221a2c310afb6ed124d6b67afda110d4b8dcade (diff) |
Refactor function return scheme
Diffstat (limited to 'inc/response.h')
-rw-r--r-- | inc/response.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/inc/response.h b/inc/response.h index c8141fd..d945e0f 100644 --- a/inc/response.h +++ b/inc/response.h @@ -1,16 +1,10 @@ #ifndef RESPONSE_H #define RESPONSE_H -enum Status { +enum Response { OK, WAIT, BLOCKED, }; -struct Response { - Status status; - int *line; - int val; -}; - #endif /* RESPONSE_H_INCLUDED */ |