-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnode.h
More file actions
23 lines (20 loc) · 813 Bytes
/
node.h
File metadata and controls
23 lines (20 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/***********************************************************************************/
/* */
/*Name: Elias Spanos */
/*Date: 30/09/2015 */
/*Filename: node.h */
/* */
/***********************************************************************************/
#ifndef EPL601_EX4_NODE_H
#define EPL601_EX4_NODE_H
struct message
{
char *type;
int req;
int NODEID;
int *queue;
int lenqueue;
int *last;
int lenlast;
};
#endif //EPL601_EX4_NODE_H