aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdlib/mbsinit.c
blob: a353cb1c1e49ad01a58bc5bbb2491796d4bb963a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}