projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixed up the path spec and filename in the header blocks
[reactos.git]
/
reactos
/
lib
/
msvcrt
/
stdlib
/
mbstow.c
1
#include <msvcrt/stdlib.h>
2
3
4
//int mblen (const char* mbs, size_t sizeString)
5
//{
6
// return 0;
7
//}
8
9
size_t
mbstowcs
(
wchar_t
*
wcaDest
,
const char
*
mbsConvert
,
size_t
size
)
10
{
11
return
0
;
12
}
13
14
int
mbtowc
(
wchar_t
*
wcDest
,
const char
*
mbConvert
,
size_t
size
)
15
{
16
return
0
;
17
}