diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-03-08 21:07:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-08 21:07:09 -0500 |
commit | 212a47482c5c037720aef726fcb2b7bb3a3acd67 (patch) | |
tree | e76871ceee74d36a660d5347c694493411426a7b /inc/response.h | |
parent | f8ed20ddbcb602ca0c5eea57fb78fb42d008f797 (diff) | |
parent | 5a24c4b2012cd2d5fe954deb3b973cb6125e860d (diff) |
Merge pull request #14 from bdunahu/bdunahuer
Storage.view + Dram.store methods, tests
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 */ |