Skip to content
Snippets Groups Projects
Commit 040129ba authored by rswindell's avatar rswindell
Browse files

Created a Borland/MS eof() compatible macro for *nix.

parent 78366328
Branches
Tags
No related merge requests found
......@@ -8,7 +8,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 2004 Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 2005 Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
......@@ -111,6 +111,7 @@
#endif
#define chsize(fd,size) ftruncate(fd,size)
#define tell(fd) lseek(fd,0,SEEK_CUR)
#define eof(fd) (tell(fd)==filelength(fd))
#elif defined(__OS2__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment