MCPcopy Create free account
hub / github.com/devkitPro/libctru / romfs_remove

Function romfs_remove

libctru/source/romfs_dev.c:138–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

136}
137
138static void romfs_remove(romfs_mount *mount)
139{
140 for(romfs_mount **it = &romfs_mount_list; *it; it = &(*it)->next)
141 {
142 if(*it == mount)
143 {
144 *it = mount->next;
145 return;
146 }
147 }
148}
149
150static romfs_mount* romfs_alloc(void)
151{

Callers 1

romfs_freeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected