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: e32369ae1e18e3937c017ce60cd2bed74e421b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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;
}