summaryrefslogtreecommitdiff
path: root/inc/response.h
blob: c8141fd5302481de92fd89a9f1d5dc837b26502c (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 */