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
Checkout
svn co https://svn.svnplace.com/artoflibs_ccoroutines/trunk/include
Download zip
33
37
42
43
44
Remove unnecessary include
jonroach
on 9:24 AM Oct 20 2025
asleep.h
41
42
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef ASLEEP_H
#define ASLEEP_H
#include
<stdbool.h>
#include
"task.h"
#include
"cor_thread_local.h"
void
ASleep_StartSystem
();
bool
ASleep
(
float
delay
,
void
**
value
);
void
ASleep_StopSystem
();
#endif
1
2
3
4
5
6
7
8
9
10
11
#ifndef ASLEEP_H
#define ASLEEP_H
#include
<stdbool.h>
#include
"task.h"
void
ASleep_StartSystem
();
bool
ASleep
(
float
delay
,
void
**
value
);
void
ASleep_StopSystem
();
#endif