Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mbsinit.c « stdlib « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}