Author: spetreolle
Date: Wed Dec 14 22:09:24 2011
New Revision: 54651
URL:
http://svn.reactos.org/svn/reactos?rev=54651&view=rev
Log:
[CRT]
- Update file.c to recent wine. (now with locking!)
- implement/enable __wcserror, __wcserror_s, _access_s, _ctime32_s, _ctime64_s,
_cwprintf, _fseeki64, _ftelli64, _get_osplatform, _get_output_format,
_get_pgmptr, _get_wpgmptr, _get_terminate, _get_tzname, _get_unexpected,
_gmtime64_s, _i64toa_s, _i64tow_s, _initterm_e, _itoa_s, _itow_s,
_localtime32_s, _localtime64_s, _ltoa_s, _ltow_s, _putwch, _searchenv_s,
_sopen_s, _ui64toa_s, _ui64tow_s, _vcwprintf, _vsprintf_p, _waccess_s,
_wcserror, _wcserror_s, _wfopen_s, _wsopen_s, fopen_s, fprintf_s, fwprintf_s,
printf_s, strerror_s, strncpy_s, strtok_s, vfprintf_s, vfwprintf_s, vprintf_s,
vwprintf_s, wcscat_s, wcsncat_s, wcstok_s, wprintf_s. Most code comes from
wine.
- Fix __set_errno -> _set_errno and export it.
- Remove unneeded files.
[CRT_HEADERS]
- add threadmbcinfo struct.
- update some sec_api headers from mingw64 due to missing or incorrect
functions.
Patch by Samuel Serapion.
Changes to msvcrt spec by me due to winebuild.
CRLF/LF fixes.
Added:
trunk/reactos/lib/sdk/crt/printf/_vsprintf_p.c (with props)
Removed:
trunk/reactos/lib/sdk/crt/except/abnorter.c
trunk/reactos/lib/sdk/crt/include/internal/file.h
trunk/reactos/lib/sdk/crt/include/internal/printf.h
trunk/reactos/lib/sdk/crt/stdio/lock_file.c
trunk/reactos/lib/sdk/crt/time/tzname.c
Modified:
trunk/reactos/dll/win32/msvcrt/msvcrt.spec
trunk/reactos/dll/win32/msvcrt20/msvcrt20.spec
trunk/reactos/dll/win32/msvcrt40/msvcrt40.spec
trunk/reactos/include/crt/crtdefs.h
trunk/reactos/include/crt/sec_api/stdio_s.h
trunk/reactos/include/crt/sec_api/stdlib_s.h
trunk/reactos/include/crt/sec_api/stralign_s.h
trunk/reactos/include/crt/sec_api/string_s.h
trunk/reactos/include/crt/sec_api/sys/timeb_s.h
trunk/reactos/include/crt/sec_api/time_s.h
trunk/reactos/include/crt/sec_api/wchar_s.h
trunk/reactos/include/crt/wchar.h
trunk/reactos/lib/sdk/crt/conio/cputs.c
trunk/reactos/lib/sdk/crt/crt.cmake
trunk/reactos/lib/sdk/crt/crt.rbuild
trunk/reactos/lib/sdk/crt/direct/chdir.c
trunk/reactos/lib/sdk/crt/direct/chdrive.c
trunk/reactos/lib/sdk/crt/direct/getcwd.c
trunk/reactos/lib/sdk/crt/direct/getdcwd.c
trunk/reactos/lib/sdk/crt/include/internal/atexit.h
trunk/reactos/lib/sdk/crt/include/internal/rterror.h
trunk/reactos/lib/sdk/crt/include/internal/safecrt.h
trunk/reactos/lib/sdk/crt/include/internal/wine/msvcrt.h
trunk/reactos/lib/sdk/crt/locale/locale.c
trunk/reactos/lib/sdk/crt/mbstring/mbsncoll.c
trunk/reactos/lib/sdk/crt/misc/environ.c
trunk/reactos/lib/sdk/crt/misc/initterm.c
trunk/reactos/lib/sdk/crt/misc/purecall.c
trunk/reactos/lib/sdk/crt/misc/stubs.c
trunk/reactos/lib/sdk/crt/precomp.h
trunk/reactos/lib/sdk/crt/printf/_cprintf.c
trunk/reactos/lib/sdk/crt/printf/_vcprintf.c
trunk/reactos/lib/sdk/crt/printf/fprintf.c
trunk/reactos/lib/sdk/crt/printf/fwprintf.c
trunk/reactos/lib/sdk/crt/printf/printf.c
trunk/reactos/lib/sdk/crt/printf/vfprintf.c
trunk/reactos/lib/sdk/crt/printf/vfwprintf.c
trunk/reactos/lib/sdk/crt/printf/vprintf.c
trunk/reactos/lib/sdk/crt/printf/vwprintf.c
trunk/reactos/lib/sdk/crt/printf/wprintf.c
trunk/reactos/lib/sdk/crt/process/_cwait.c
trunk/reactos/lib/sdk/crt/process/_system.c
trunk/reactos/lib/sdk/crt/process/process.c
trunk/reactos/lib/sdk/crt/signal/signal.c
trunk/reactos/lib/sdk/crt/stdio/_flsbuf.c
trunk/reactos/lib/sdk/crt/stdio/access.c
trunk/reactos/lib/sdk/crt/stdio/file.c
trunk/reactos/lib/sdk/crt/stdio/perror.c
trunk/reactos/lib/sdk/crt/stdlib/_exit.c
trunk/reactos/lib/sdk/crt/stdlib/abort.c
trunk/reactos/lib/sdk/crt/stdlib/atexit.c
trunk/reactos/lib/sdk/crt/stdlib/errno.c
trunk/reactos/lib/sdk/crt/stdlib/senv.c
trunk/reactos/lib/sdk/crt/string/atol.c
trunk/reactos/lib/sdk/crt/string/itoa.c
trunk/reactos/lib/sdk/crt/string/itow.c
trunk/reactos/lib/sdk/crt/string/splitp.c
trunk/reactos/lib/sdk/crt/string/strerror.c
trunk/reactos/lib/sdk/crt/string/strtok.c
trunk/reactos/lib/sdk/crt/string/strtol.c
trunk/reactos/lib/sdk/crt/string/strtoul.c
trunk/reactos/lib/sdk/crt/string/strtoull.c
trunk/reactos/lib/sdk/crt/string/wcs.c
trunk/reactos/lib/sdk/crt/string/wcstol.c
trunk/reactos/lib/sdk/crt/string/witow.c
trunk/reactos/lib/sdk/crt/time/bitsfixup.h
trunk/reactos/lib/sdk/crt/time/ctime32.c
trunk/reactos/lib/sdk/crt/time/ctime64.c
trunk/reactos/lib/sdk/crt/time/difftime32.c
trunk/reactos/lib/sdk/crt/time/difftime64.c
trunk/reactos/lib/sdk/crt/time/ftime.c
trunk/reactos/lib/sdk/crt/time/ftime32.c
trunk/reactos/lib/sdk/crt/time/ftime64.c
trunk/reactos/lib/sdk/crt/time/futime.c
trunk/reactos/lib/sdk/crt/time/futime32.c
trunk/reactos/lib/sdk/crt/time/futime64.c
trunk/reactos/lib/sdk/crt/time/gmtime.c
trunk/reactos/lib/sdk/crt/time/localtime.c
trunk/reactos/lib/sdk/crt/time/localtime32.c
trunk/reactos/lib/sdk/crt/time/localtime64.c
trunk/reactos/lib/sdk/crt/time/strdate.c
trunk/reactos/lib/sdk/crt/time/strtime.c
trunk/reactos/lib/sdk/crt/time/time32.c
trunk/reactos/lib/sdk/crt/time/time64.c
trunk/reactos/lib/sdk/crt/time/timezone.c
trunk/reactos/lib/sdk/crt/time/utime32.c
trunk/reactos/lib/sdk/crt/time/utime64.c
trunk/reactos/lib/sdk/crt/time/wctime32.c
trunk/reactos/lib/sdk/crt/time/wctime64.c
trunk/reactos/lib/sdk/crt/time/wstrdate.c
trunk/reactos/lib/sdk/crt/time/wutime32.c
trunk/reactos/lib/sdk/crt/time/wutime64.c
trunk/reactos/lib/sdk/crt/wine/heap.c
trunk/reactos/lib/sdk/crt/wstring/wcstok.c
[This mail would be too long, it was shortened to contain the URLs only.]
Modified: trunk/reactos/dll/win32/msvcrt/msvcrt.spec
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msvcrt/msvcrt.sp…
Modified: trunk/reactos/dll/win32/msvcrt20/msvcrt20.spec
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msvcrt20/msvcrt2…
Modified: trunk/reactos/dll/win32/msvcrt40/msvcrt40.spec
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msvcrt40/msvcrt4…
Modified: trunk/reactos/include/crt/crtdefs.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/crtdefs.h?rev=…
Modified: trunk/reactos/include/crt/sec_api/stdio_s.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/sec_api/stdio_…
Modified: trunk/reactos/include/crt/sec_api/stdlib_s.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/sec_api/stdlib…
Modified: trunk/reactos/include/crt/sec_api/stralign_s.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/sec_api/strali…
Modified: trunk/reactos/include/crt/sec_api/string_s.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/sec_api/string…
Modified: trunk/reactos/include/crt/sec_api/sys/timeb_s.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/sec_api/sys/ti…
Modified: trunk/reactos/include/crt/sec_api/time_s.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/sec_api/time_s…
Modified: trunk/reactos/include/crt/sec_api/wchar_s.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/sec_api/wchar_…
Modified: trunk/reactos/include/crt/wchar.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/wchar.h?rev=54…
Modified: trunk/reactos/lib/sdk/crt/conio/cputs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/conio/cputs.c?…
Modified: trunk/reactos/lib/sdk/crt/crt.cmake
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/crt.cmake?rev=…
Modified: trunk/reactos/lib/sdk/crt/crt.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/crt.rbuild?rev…
Modified: trunk/reactos/lib/sdk/crt/direct/chdir.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/direct/chdir.c…
Modified: trunk/reactos/lib/sdk/crt/direct/chdrive.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/direct/chdrive…
Modified: trunk/reactos/lib/sdk/crt/direct/getcwd.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/direct/getcwd.…
Modified: trunk/reactos/lib/sdk/crt/direct/getdcwd.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/direct/getdcwd…
Removed: trunk/reactos/lib/sdk/crt/except/abnorter.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/except/abnorte…
Modified: trunk/reactos/lib/sdk/crt/include/internal/atexit.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/include/intern…
Removed: trunk/reactos/lib/sdk/crt/include/internal/file.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/include/intern…
Removed: trunk/reactos/lib/sdk/crt/include/internal/printf.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/include/intern…
Modified: trunk/reactos/lib/sdk/crt/include/internal/rterror.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/include/intern…
Modified: trunk/reactos/lib/sdk/crt/include/internal/safecrt.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/include/intern…
Modified: trunk/reactos/lib/sdk/crt/include/internal/wine/msvcrt.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/include/intern…
Modified: trunk/reactos/lib/sdk/crt/locale/locale.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/locale/locale.…
Modified: trunk/reactos/lib/sdk/crt/mbstring/mbsncoll.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/mbstring/mbsnc…
Modified: trunk/reactos/lib/sdk/crt/misc/environ.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/misc/environ.c…
Modified: trunk/reactos/lib/sdk/crt/misc/initterm.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/misc/initterm.…
Modified: trunk/reactos/lib/sdk/crt/misc/purecall.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/misc/purecall.…
Modified: trunk/reactos/lib/sdk/crt/misc/stubs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/misc/stubs.c?r…
Modified: trunk/reactos/lib/sdk/crt/precomp.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/precomp.h?rev=…
Modified: trunk/reactos/lib/sdk/crt/printf/_cprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/_cprint…
Modified: trunk/reactos/lib/sdk/crt/printf/_vcprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/_vcprin…
Added: trunk/reactos/lib/sdk/crt/printf/_vsprintf_p.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/_vsprin…
Modified: trunk/reactos/lib/sdk/crt/printf/fprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/fprintf…
Modified: trunk/reactos/lib/sdk/crt/printf/fwprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/fwprint…
Modified: trunk/reactos/lib/sdk/crt/printf/printf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/printf.…
Modified: trunk/reactos/lib/sdk/crt/printf/vfprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/vfprint…
Modified: trunk/reactos/lib/sdk/crt/printf/vfwprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/vfwprin…
Modified: trunk/reactos/lib/sdk/crt/printf/vprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/vprintf…
Modified: trunk/reactos/lib/sdk/crt/printf/vwprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/vwprint…
Modified: trunk/reactos/lib/sdk/crt/printf/wprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/printf/wprintf…
Modified: trunk/reactos/lib/sdk/crt/process/_cwait.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/process/_cwait…
Modified: trunk/reactos/lib/sdk/crt/process/_system.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/process/_syste…
Modified: trunk/reactos/lib/sdk/crt/process/process.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/process/proces…
Modified: trunk/reactos/lib/sdk/crt/signal/signal.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/signal/signal.…
Modified: trunk/reactos/lib/sdk/crt/stdio/_flsbuf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/_flsbuf.…
Modified: trunk/reactos/lib/sdk/crt/stdio/access.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/access.c…
Modified: trunk/reactos/lib/sdk/crt/stdio/file.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/file.c?r…
Removed: trunk/reactos/lib/sdk/crt/stdio/lock_file.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/lock_fil…
Modified: trunk/reactos/lib/sdk/crt/stdio/perror.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/perror.c…
Modified: trunk/reactos/lib/sdk/crt/stdlib/_exit.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdlib/_exit.c…
Modified: trunk/reactos/lib/sdk/crt/stdlib/abort.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdlib/abort.c…
Modified: trunk/reactos/lib/sdk/crt/stdlib/atexit.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdlib/atexit.…
Modified: trunk/reactos/lib/sdk/crt/stdlib/errno.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdlib/errno.c…
Modified: trunk/reactos/lib/sdk/crt/stdlib/senv.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdlib/senv.c?…
Modified: trunk/reactos/lib/sdk/crt/string/atol.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/atol.c?…
Modified: trunk/reactos/lib/sdk/crt/string/itoa.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/itoa.c?…
Modified: trunk/reactos/lib/sdk/crt/string/itow.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/itow.c?…
Modified: trunk/reactos/lib/sdk/crt/string/splitp.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/splitp.…
Modified: trunk/reactos/lib/sdk/crt/string/strerror.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/strerro…
Modified: trunk/reactos/lib/sdk/crt/string/strtok.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/strtok.…
Modified: trunk/reactos/lib/sdk/crt/string/strtol.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/strtol.…
Modified: trunk/reactos/lib/sdk/crt/string/strtoul.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/strtoul…
Modified: trunk/reactos/lib/sdk/crt/string/strtoull.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/strtoul…
Modified: trunk/reactos/lib/sdk/crt/string/wcs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/wcs.c?r…
Modified: trunk/reactos/lib/sdk/crt/string/wcstol.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/wcstol.…
Modified: trunk/reactos/lib/sdk/crt/string/witow.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/witow.c…
Modified: trunk/reactos/lib/sdk/crt/time/bitsfixup.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/bitsfixup…
Modified: trunk/reactos/lib/sdk/crt/time/ctime32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/ctime32.c…
Modified: trunk/reactos/lib/sdk/crt/time/ctime64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/ctime64.c…
Modified: trunk/reactos/lib/sdk/crt/time/difftime32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/difftime3…
Modified: trunk/reactos/lib/sdk/crt/time/difftime64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/difftime6…
Modified: trunk/reactos/lib/sdk/crt/time/ftime.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/ftime.c?r…
Modified: trunk/reactos/lib/sdk/crt/time/ftime32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/ftime32.c…
Modified: trunk/reactos/lib/sdk/crt/time/ftime64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/ftime64.c…
Modified: trunk/reactos/lib/sdk/crt/time/futime.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/futime.c?…
Modified: trunk/reactos/lib/sdk/crt/time/futime32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/futime32.…
Modified: trunk/reactos/lib/sdk/crt/time/futime64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/futime64.…
Modified: trunk/reactos/lib/sdk/crt/time/gmtime.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/gmtime.c?…
Modified: trunk/reactos/lib/sdk/crt/time/localtime.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/localtime…
Modified: trunk/reactos/lib/sdk/crt/time/localtime32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/localtime…
Modified: trunk/reactos/lib/sdk/crt/time/localtime64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/localtime…
Modified: trunk/reactos/lib/sdk/crt/time/strdate.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/strdate.c…
Modified: trunk/reactos/lib/sdk/crt/time/strtime.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/strtime.c…
Modified: trunk/reactos/lib/sdk/crt/time/time32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/time32.c?…
Modified: trunk/reactos/lib/sdk/crt/time/time64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/time64.c?…
Modified: trunk/reactos/lib/sdk/crt/time/timezone.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/timezone.…
Removed: trunk/reactos/lib/sdk/crt/time/tzname.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/tzname.c?…
Modified: trunk/reactos/lib/sdk/crt/time/utime32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/utime32.c…
Modified: trunk/reactos/lib/sdk/crt/time/utime64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/utime64.c…
Modified: trunk/reactos/lib/sdk/crt/time/wctime32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/wctime32.…
Modified: trunk/reactos/lib/sdk/crt/time/wctime64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/wctime64.…
Modified: trunk/reactos/lib/sdk/crt/time/wstrdate.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/wstrdate.…
Modified: trunk/reactos/lib/sdk/crt/time/wutime32.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/wutime32.…
Modified: trunk/reactos/lib/sdk/crt/time/wutime64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/time/wutime64.…
Modified: trunk/reactos/lib/sdk/crt/wine/heap.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/wine/heap.c?re…
Modified: trunk/reactos/lib/sdk/crt/wstring/wcstok.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/wstring/wcstok…