mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-25 11:25:00 -05:00
35 lines
773 B
C++
35 lines
773 B
C++
#include "devoptab_fsa.h"
|
|
|
|
int
|
|
__wut_fsa_unlink(struct _reent *r,
|
|
const char *name) {
|
|
FSError status;
|
|
char *fixedPath;
|
|
__wut_fsa_device_t *deviceData;
|
|
|
|
if (!name) {
|
|
r->_errno = EINVAL;
|
|
return -1;
|
|
}
|
|
|
|
fixedPath = __wut_fsa_fixpath(r, name);
|
|
if (!fixedPath) {
|
|
r->_errno = ENOMEM;
|
|
return -1;
|
|
}
|
|
deviceData = (__wut_fsa_device_t *) r->deviceData;
|
|
|
|
status = FSARemove(deviceData->clientHandle, fixedPath);
|
|
if (status < 0) {
|
|
WUT_DEBUG_REPORT("FSARemove(0x%08X, %s) failed: %s\n",
|
|
deviceData->clientHandle, fixedPath, FSAGetStatusStr(status));
|
|
free(fixedPath);
|
|
r->_errno = __wut_fsa_translate_error(status);
|
|
return -1;
|
|
}
|
|
|
|
free(fixedPath);
|
|
|
|
return 0;
|
|
}
|