Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / stdlib / mbstowcs.c
1 #include <stdlib.h>
2
3 size_t mbstowcs( wchar_t *wcstr, const char *mbstr, size_t count )
4 {
5 return 0;
6 }
7
8 int mbtowc( wchar_t *wchar, const char *mbchar, size_t count )
9 {
10 return 0;
11 }