d2effe74d785e392365b669b94cf837eadef0c6c
[mTask.git] / client / interpret.h
1 #ifndef INTEPRET_H
2 #define INTEPRET_H
3
4 #define STACKSIZE 1024
5
6 #include <stdint.h>
7 #include <stdbool.h>
8
9 #include "task.h"
10
11 void run_task(struct task *task);
12
13 #endif