forked from KolibriOS/kolibrios
d210a76d45
git-svn-id: svn://kolibrios.org@6607 a494cfbc-eb01-0410-851d-a64ba20cac60
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;
|
|
}
|