Features
Pricing
Sign in
Sign up
Code
Issues
Merge requests
Processes
Insights
Settings
Like
0
Fork
That couldn't be done
Upload
0
/
0
Success
0 branches
0 tags
48
Empty parameter lists are now (void)
jonroach
21 Oct 2025 14:09
1 contributor
11 lines
204 bytes
Text
Raw
Blame
Delete
Delete asleep.h
Delete checkin message
Delete
1
#ifndef ASLEEP_H
2
#define ASLEEP_H
3
#include
<stdbool.h>
4
#include
"task.h"
5
6
extern
void
ASleep_StartSystem
(
void
);
7
extern
bool
ASleep
(
float
delay
,
void
**
value
);
8
extern
void
ASleep_StopSystem
(
void
);
9
10
#endif
11