Subversion Repositories Kolibri OS

Rev

Go to most recent revision | 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. wctomb(char *s, wchar_t wchar)
  6. {
  7.   if (s)
  8.     s[0] = wchar;
  9.   return 1;
  10. }
  11.