mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:52:54 +00:00
[CRT]
- Implement _vsc(w)printf for msvcrt svn path=/trunk/; revision=56927
This commit is contained in:
parent
5e1b6eac22
commit
ab3aa90f77
4 changed files with 6 additions and 3 deletions
|
@ -1343,7 +1343,7 @@
|
||||||
@ cdecl _ui64tow(double ptr long)
|
@ cdecl _ui64tow(double ptr long)
|
||||||
@ cdecl _ultoa(long ptr long)
|
@ cdecl _ultoa(long ptr long)
|
||||||
@ cdecl _ultow(long ptr long)
|
@ cdecl _ultow(long ptr long)
|
||||||
;@ cdecl _vscwprintf
|
@ cdecl _vscwprintf(wstr ptr)
|
||||||
@ cdecl _vsnprintf(ptr long str ptr)
|
@ cdecl _vsnprintf(ptr long str ptr)
|
||||||
@ cdecl _vsnwprintf(ptr long wstr ptr)
|
@ cdecl _vsnwprintf(ptr long wstr ptr)
|
||||||
@ cdecl _wcsicmp(wstr wstr)
|
@ cdecl _wcsicmp(wstr wstr)
|
||||||
|
|
|
@ -975,10 +975,10 @@
|
||||||
# stub _vprintf_p_l
|
# stub _vprintf_p_l
|
||||||
# stub _vprintf_s_l
|
# stub _vprintf_s_l
|
||||||
@ cdecl _utime(str ptr)
|
@ cdecl _utime(str ptr)
|
||||||
# @ cdecl _vscprintf(str ptr)
|
@ cdecl _vscprintf(str ptr)
|
||||||
# stub _vscprintf_l
|
# stub _vscprintf_l
|
||||||
# stub _vscprintf_p_l
|
# stub _vscprintf_p_l
|
||||||
# @ cdecl _vscwprintf(wstr ptr)
|
@ cdecl _vscwprintf(wstr ptr)
|
||||||
# stub _vscwprintf_l
|
# stub _vscwprintf_l
|
||||||
# stub _vscwprintf_p_l
|
# stub _vscwprintf_p_l
|
||||||
@ cdecl _vsnprintf(ptr long str ptr)
|
@ cdecl _vsnprintf(ptr long str ptr)
|
||||||
|
|
|
@ -136,6 +136,8 @@ list(APPEND CRT_SOURCE
|
||||||
printf/_snwprintf.c
|
printf/_snwprintf.c
|
||||||
printf/_vcprintf.c
|
printf/_vcprintf.c
|
||||||
printf/_vcwprintf.c
|
printf/_vcwprintf.c
|
||||||
|
printf/_vscprintf.c
|
||||||
|
printf/_vscwprintf.c
|
||||||
printf/_vsnprintf.c
|
printf/_vsnprintf.c
|
||||||
printf/_vsnwprintf.c
|
printf/_vsnwprintf.c
|
||||||
printf/_vsprintf_p.c
|
printf/_vsprintf_p.c
|
||||||
|
|
|
@ -13,6 +13,7 @@ list(APPEND LIBCNTPR_SOURCE
|
||||||
printf/_snprintf.c
|
printf/_snprintf.c
|
||||||
printf/_snwprintf.c
|
printf/_snwprintf.c
|
||||||
printf/_vcprintf.c
|
printf/_vcprintf.c
|
||||||
|
printf/_vscwprintf.c
|
||||||
printf/_vsnprintf.c
|
printf/_vsnprintf.c
|
||||||
printf/_vsnwprintf.c
|
printf/_vsnwprintf.c
|
||||||
printf/sprintf.c
|
printf/sprintf.c
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue