MCPcopy Create free account
hub / github.com/WheretIB/nullc / FileClose

Function FileClose

NULLC/includes/file.cpp:46–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44 nullcThrowError("Cannot open file.");
45 }
46 void FileClose(File* file)
47 {
48 fclose(file->handle);
49 file->flag = 0;
50 file->handle = NULL;
51 }
52
53 int FileOpened(File* file)
54 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected