Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2
#include 
3
 
4
int
5
mbtowc(wchar_t *pwc, const char *s, size_t n)
6
{
7
  int x = 0;
8
  if (s == 0)
9
    return 0;
10
  if (*s)
11
    x = 1;
12
 
13
  if (pwc)
14
    *pwc = *s;
15
 
16
  return x;
17
}