- Cleanup the /lib directory, by putting more 3rd-party libs in /3rdparty, and by...
[reactos.git] / reactos / lib / sdk / crt / stdlib / wcstom.c
1 #include <stdlib.h>
2
3 /*
4 * @unimplemented
5 */
6 size_t wcstombs (char* mbsDest, const wchar_t* wsConvert, size_t size)
7 {
8 return 0;
9 }
10
11 /*
12 * @unimplemented
13 */
14 int wctomb (char* mbDest, wchar_t wc)
15 {
16 return 0;
17 }
18
19
20