]> pd.if.org Git - pdclib/blob - functions/stdlib/wctomb.c
Re-import from Subversion.
[pdclib] / functions / stdlib / wctomb.c
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * --------------------------------------------------------------------------*/
7
8 int wctomb( char * s, wchar_t wchar ) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     if (s != NULL)
13     {
14         *s = wchar;
15         return (1);
16     }
17     else
18     {
19         return (0);
20     }
21 }
22 */