blob: d190953a560b0152562fa1ba78ed64716d633896 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef RESPONSE_H
#define RESPONSE_H
enum Status {
OK,
WAIT,
BLOCKED,
};
struct Response {
Status status;
int *line;
int val;
};
#endif /* RESPONSE_H_INCLUDED */
|