1 /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
2 /* If you are missing that file, acquire a complete release at teeworlds.com. */
3 #ifndef ENGINE_SHARED_LINEREADER_H
4 #define ENGINE_SHARED_LINEREADER_H
5 #include <base/system.h>
7 // buffered stream for reading lines, should perhaps be something smaller
10 char m_aBuffer
[4*1024];
12 unsigned m_BufferSize
;
13 unsigned m_BufferMaxSize
;
16 void Init(IOHANDLE IoHandle
);