1
0
mirror of https://github.com/Dejvino/lilybook.git synced 2024-09-28 09:53:37 +00:00
lilybook/main/modes/reader/TextReader.h

17 lines
201 B
C++

#include <stdlib.h>
#include <stdio.h>
class TextReader
{
public:
TextReader(FILE* file);
size_t read(long pos, char* text, size_t len);
void close();
private:
FILE* f;
};