8 lines
88 B
C
8 lines
88 B
C
#ifndef TASKING_H
|
|
#define TASKING_H
|
|
|
|
void yield();
|
|
void createTask(void* task);
|
|
|
|
#endif
|