mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:14:58 +00:00
LibC: Stub out wcsftime()
This commit is contained in:
parent
e717ca32d1
commit
687a3351c2
2 changed files with 12 additions and 0 deletions
|
@ -646,4 +646,14 @@ size_t wcsspn(wchar_t const* wcs, wchar_t const* accept)
|
|||
} while (rc != 0);
|
||||
}
|
||||
}
|
||||
|
||||
size_t wcsftime(wchar_t* __restrict wcs, size_t maxsize, wchar_t const* __restrict format, const struct tm* __restrict timeptr)
|
||||
{
|
||||
(void)wcs;
|
||||
(void)maxsize;
|
||||
(void)format;
|
||||
(void)timeptr;
|
||||
dbgln("FIXME: Implement wcsftime()");
|
||||
TODO();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue