DragonProbe/libco/libco.h

17 lines
370 B
C

// vim: set et:
/* derived from libco v20, by byuu (ISC) */
#ifndef LIBCO_H_
#define LIBCO_H_
typedef void* cothread_t;
cothread_t co_active(void);
cothread_t co_derive(void* memory, unsigned int heapsize, void (*coentry)(void/***/)/*, void* ud*/);
void co_switch(cothread_t); // should we make this return void* (and thus `ud`)?
int co_serializable(void);
#endif