mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
21 lines
342 B
C
21 lines
342 B
C
|
#include <reent.h>
|
||
|
#include <newlib.h>
|
||
|
#include <wchar.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
size_t
|
||
|
mbrlen(const char *s, size_t n, mbstate_t *ps)
|
||
|
{
|
||
|
#ifdef _MB_CAPABLE
|
||
|
if (ps == NULL)
|
||
|
{
|
||
|
_REENT_CHECK_MISC(_REENT);
|
||
|
ps = &(_REENT_MBRLEN_STATE(_REENT));
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
return mbrtowc(NULL, s, n, ps);
|
||
|
}
|