odyssey/sources/read.h

16 lines
236 B
C
Raw Normal View History

2017-05-24 11:04:19 +00:00
#ifndef MM_READ_H
#define MM_READ_H
2017-03-23 12:41:56 +00:00
/*
* machinarium.
*
* cooperative multitasking engine.
*/
int mm_read(mm_io_t*, char*, int, uint32_t);
2017-04-18 12:02:28 +00:00
int mm_readahead_start(mm_io_t*);
int mm_readahead_stop(mm_io_t*);
2017-05-24 11:04:19 +00:00
#endif /* MM_READ_H */