1 contributor
11 lines175 bytes
1#ifndef ASLEEP_H
2#define ASLEEP_H
3#include <stdbool.h>
4#include "task.h"
5
6void ASleep_StartSystem();
7bool ASleep(float delay, void **value);
8void ASleep_StopSystem();
9
10#endif
11