diff options
Diffstat (limited to 'inc/response.h')
-rw-r--r-- | inc/response.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/inc/response.h b/inc/response.h index d190953..c8141fd 100644 --- a/inc/response.h +++ b/inc/response.h @@ -2,15 +2,15 @@ #define RESPONSE_H enum Status { - OK, - WAIT, - BLOCKED, + OK, + WAIT, + BLOCKED, }; struct Response { - Status status; - int *line; - int val; + Status status; + int *line; + int val; }; #endif /* RESPONSE_H_INCLUDED */ |