- removed Q_filelength which is no longer being used.

This commit is contained in:
Christoph Oelckers 2017-12-02 14:27:49 +01:00
commit 1afc3b48a1
2 changed files with 0 additions and 21 deletions

View file

@ -145,26 +145,6 @@ void ReplaceString (char **ptr, const char *str)
*/
//==========================================================================
//
// Q_filelength
//
//==========================================================================
int Q_filelength (FILE *f)
{
int pos;
int end;
pos = ftell (f);
fseek (f, 0, SEEK_END);
end = ftell (f);
fseek (f, pos, SEEK_SET);
return end;
}
//==========================================================================
//
// FileExists