Skip to content
Snippets Groups Projects
Commit 37e0c4f4 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Remove unused functions.

parent ad17ca7a
No related branches found
No related tags found
No related merge requests found
......@@ -422,20 +422,6 @@ int fileSetBufferType(int fileID, int type)
return (ret);
}
int fileGetBufferType(int fileID)
{
bfile_t *fileptr;
int bufferType = 0;
fileptr = file_to_pointer(fileID);
if ( fileptr ) bufferType = fileptr->bufferType;
return (bufferType);
}
int fileFlush(int fileID)
{
bfile_t *fileptr;
......@@ -486,20 +472,6 @@ int fileEOF(int fileID)
return (retval);
}
int fileError(int fileID)
{
bfile_t *fileptr;
int retval = 0;
fileptr = file_to_pointer(fileID);
if ( fileptr ) retval = (fileptr->flag & FILE_ERROR) != 0;
return (retval);
}
void fileRewind(int fileID)
{
fileSetPos(fileID, (off_t) 0, SEEK_SET);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment