MCPcopy Create free account
hub / github.com/TheOfficialFloW/VitaShell / ReadArchiveFile

Function ReadArchiveFile

archive.c:847–855  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

845}
846
847int ReadArchiveFile(const char *file, void *buf, int size) {
848 SceUID fd = archiveFileOpen(file, SCE_O_RDONLY, 0);
849 if (fd < 0)
850 return fd;
851
852 int read = archiveFileRead(fd, buf, size);
853 archiveFileClose(fd);
854 return read;
855}
856
857int archiveNeedPassword() {
858 return need_password;

Callers 5

hexViewerFunction · 0.85
initPropertyDialogFunction · 0.85
SFOReaderFunction · 0.85
textViewerFunction · 0.85
loadImageFunction · 0.85

Calls 3

archiveFileOpenFunction · 0.85
archiveFileReadFunction · 0.85
archiveFileCloseFunction · 0.85

Tested by

no test coverage detected