mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 03:05:15 +00:00
15 lines
207 B
C
15 lines
207 B
C
#include <reent.h>
|
|
#include <wchar.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
int
|
|
mbsinit(const mbstate_t *ps)
|
|
{
|
|
if (ps == NULL || ps->__count == 0)
|
|
return 1;
|
|
else
|
|
return 0;
|
|
}
|