*** empty log message ***

This commit is contained in:
Luiz Rafael Culik
2000-05-29 03:09:43 +00:00
parent b2765aa415
commit 416d424eaf

View File

@@ -50,6 +50,8 @@
* hb_fsIsDrv()
* hb_fsIsDevice()
*
* Copyright 2000 Luiz Rafael Culik <culik@sl.conex.net>
* hb_fsEof()
* See doc/license.txt for licensing terms.
*
*/
@@ -1456,3 +1458,9 @@ BOOL hb_fsFile( BYTE * pFilename )
return bIsFile;
}
BOOL hb_fsEof( FHANDLE hFileHandle )
{
int iResult;
iResult = eof(hFileHandle);
return ( iResult ? FALSE : TRUE );
}