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