odyssey/lib/ft_op.h

19 lines
201 B
C

#ifndef FT_OP_H_
#define FT_OP_H_
/*
* flint.
*
* Cooperative multitasking engine.
*/
typedef struct ftop ftop;
struct ftop {
int active;
void (*cancel)(ftop*, void*);
void *arg;
};
#endif