1 contributor
11 lines175 bytes
Newer
Older
-
+
commited
{line.log.rev}
on
8 months ago
37
1
#ifndef ASLEEP_H
2
#define ASLEEP_H
3
#include <stdbool.h>
4
#include "task.h"
5
6
void ASleep_StartSystem();
7
bool ASleep(float delay, void **value);
8
void ASleep_StopSystem();
9
10
#endif
11