Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  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. }
  18.