MCPcopy Create free account
hub / github.com/devkitPro/3ds-hbmenu / menuEntryLoadExternalSmdh

Function menuEntryLoadExternalSmdh

source/menu-entry.c:110–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110static bool menuEntryLoadExternalSmdh(menuEntry_s* me, const char* file)
111{
112 FILE* f = fopen(file, "rb");
113 if (!f) return false;
114 bool ok = fread(&me->smdh, sizeof(smdh_s), 1, f) == 1;
115 fclose(f);
116 return ok;
117}
118
119static void fixSpaceNewLine(char* buf)
120{

Callers 1

menuEntryLoadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected