15 lines
207 B
C
15 lines
207 B
C
|
#include <wchar.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <reent.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int
|
||
|
mbsinit(const mbstate_t *ps)
|
||
|
{
|
||
|
if (ps == NULL || ps->__count == 0)
|
||
|
return 1;
|
||
|
else
|
||
|
return 0;
|
||
|
}
|