diff options
author | aap <aap@papnet.eu> | 2019-06-28 21:24:22 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-28 21:24:22 +0200 |
commit | 0711bfacd451b8cbe59ae08efd595178e928f7dc (patch) | |
tree | c59e716028f20a6be0a8dfd98b368f3abd9e2e11 /src/FileMgr.h | |
parent | misc stuff, mostly collision (diff) | |
download | re3-0711bfacd451b8cbe59ae08efd595178e928f7dc.tar re3-0711bfacd451b8cbe59ae08efd595178e928f7dc.tar.gz re3-0711bfacd451b8cbe59ae08efd595178e928f7dc.tar.bz2 re3-0711bfacd451b8cbe59ae08efd595178e928f7dc.tar.lz re3-0711bfacd451b8cbe59ae08efd595178e928f7dc.tar.xz re3-0711bfacd451b8cbe59ae08efd595178e928f7dc.tar.zst re3-0711bfacd451b8cbe59ae08efd595178e928f7dc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/FileMgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FileMgr.h b/src/FileMgr.h index f67056f1..bab86e38 100644 --- a/src/FileMgr.h +++ b/src/FileMgr.h @@ -15,7 +15,7 @@ public: static int Read(int fd, char *buf, int len); static int Write(int fd, char *buf, int len); static bool Seek(int fd, int offset, int whence); - static char *ReadLine(int fd, char *buf, int len); + static bool ReadLine(int fd, char *buf, int len); static int CloseFile(int fd); static int GetErrorReadWrite(int fd); }; |