Newer
Older
Scratch / mobius / src / libc / string / wcserror.c
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 230 bytes Scratch
#include <string.h>
#include <stdlib.h>
#include <os/os.h>

wchar_t errorbuf[50];

wchar_t* _wcserror(int errcode)
{
	if (sysGetErrorText(errcode, errorbuf, countof(errorbuf)))
		return errorbuf;
	else
		return L"unknown error";
}