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

Function archiveFileRead

archive.c:824–832  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

822}
823
824int archiveFileRead(SceUID fd, void *data, SceSize size) {
825 if (is_psarc)
826 return psarcFileRead(fd, data, size);
827
828 if (!archive_fd || fd != ARCHIVE_FD)
829 return -1;
830
831 return archive_read_data(archive_fd, data, size);
832}
833
834int archiveFileClose(SceUID fd) {
835 if (is_psarc)

Callers 2

extractArchiveFileFunction · 0.85
ReadArchiveFileFunction · 0.85

Calls 1

psarcFileReadFunction · 0.85

Tested by

no test coverage detected