ReactOS 0.4.15-dev-8614-gbc76250
wcrtomb.c File Reference
#include <precomp.h>
Include dependency graph for wcrtomb.c:

Go to the source code of this file.

Functions

size_t CDECL wcrtomb (char *dst, wchar_t ch, mbstate_t *s)
 

Function Documentation

◆ wcrtomb()

size_t CDECL wcrtomb ( char dst,
wchar_t  ch,
mbstate_t s 
)

Definition at line 27 of file wcrtomb.c.

28{
29 if(s)
30 *s = 0;
31 return wctomb(dst, ch);
32}
GLdouble s
Definition: gl.h:2039
GLenum GLenum dst
Definition: glext.h:6340
#define wctomb(cp, wc)
Definition: wchar.h:161