separated devices
[mTask.git] / client / interpret.h
1 #ifndef INTEPRET_H
2 #define INTEPRET_H
3
4 #define STACKSIZE 1024
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 #include <stdint.h>
11 #include <stdbool.h>
12
13 #include "task.h"
14
15 void run_task(struct task *task);
16
17 #ifdef __cplusplus
18 }
19 #endif
20 #endif