mirror of
https://github.com/switchbrew/switch-examples.git
synced 2025-06-21 13:22:40 +02:00
14 lines
180 B
C
14 lines
180 B
C
#include <switch.h>
|
|
|
|
void userAppInit(void)
|
|
{
|
|
Result res = romfsInit();
|
|
if (R_FAILED(res))
|
|
diagAbortWithResult(res);
|
|
}
|
|
|
|
void userAppExit(void)
|
|
{
|
|
romfsExit();
|
|
}
|