MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / _GetFileSize

Function _GetFileSize

source/Debugger/Debug.cpp:484–491  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482// File _______________________________________________________________________
483
484size_t _GetFileSize( FILE *hFile )
485{
486 fseek( hFile, 0, SEEK_END );
487 size_t nFileBytes = ftell( hFile );
488 fseek( hFile, 0, SEEK_SET );
489
490 return nFileBytes;
491}
492
493
494

Callers 2

CmdMemoryLoadFunction · 0.85
CmdNTSCFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected