Author: fireball
Date: Wed Jun 11 03:54:46 2008
New Revision: 33927
URL:
http://svn.reactos.org/svn/reactos?rev=33927&view=rev
Log:
- Completely rewrite most of stdio functions by merging Wine's msvcrt code adapted for
ReactOS.
- Leave and refactor existing underlying linux-code based sprintf implementation into lnx_
prefixed functions.
- Misc source code and headers cleanup.
- Fixes bugs 2910, 2803.
See issue #2803 for more details.
Added:
trunk/reactos/lib/sdk/crt/include/internal/printf.h (with props)
trunk/reactos/lib/sdk/crt/stdio/access.c
- copied, changed from r33896, trunk/reactos/lib/sdk/crt/io/access.c
trunk/reactos/lib/sdk/crt/stdio/find.c
- copied unchanged from r33896, trunk/reactos/lib/sdk/crt/io/find.c
trunk/reactos/lib/sdk/crt/stdio/fmode.c
- copied unchanged from r33896, trunk/reactos/lib/sdk/crt/io/fmode.c
trunk/reactos/lib/sdk/crt/stdio/lnx_sprintf.c
- copied, changed from r33896, trunk/reactos/lib/sdk/crt/stdio/sprintf.c
trunk/reactos/lib/sdk/crt/stdio/lnx_vfprintf.c
- copied, changed from r33896, trunk/reactos/lib/sdk/crt/stdio/vfprintf.c
trunk/reactos/lib/sdk/crt/stdio/lnx_vfwprint.c
- copied, changed from r33896, trunk/reactos/lib/sdk/crt/stdio/vfwprint.c
trunk/reactos/lib/sdk/crt/stdio/lnx_vsprintf.c
- copied, changed from r33896, trunk/reactos/lib/sdk/crt/stdio/vsprintf.c
trunk/reactos/lib/sdk/crt/stdio/lnx_vswprintf.c
- copied, changed from r33896, trunk/reactos/lib/sdk/crt/stdio/vswprintf.c
trunk/reactos/lib/sdk/crt/stdio/waccess.c
- copied unchanged from r33896, trunk/reactos/lib/sdk/crt/io/waccess.c
trunk/reactos/lib/sdk/crt/stdio/wfind.c
- copied unchanged from r33896, trunk/reactos/lib/sdk/crt/io/wfind.c
trunk/reactos/lib/sdk/crt/string/wcs.c (with props)
Removed:
trunk/reactos/lib/sdk/crt/io/
trunk/reactos/lib/sdk/crt/stdio/allocfil.c
trunk/reactos/lib/sdk/crt/stdio/clearerr.c
trunk/reactos/lib/sdk/crt/stdio/fclose.c
trunk/reactos/lib/sdk/crt/stdio/fdopen.c
trunk/reactos/lib/sdk/crt/stdio/feof.c
trunk/reactos/lib/sdk/crt/stdio/ferror.c
trunk/reactos/lib/sdk/crt/stdio/fflush.c
trunk/reactos/lib/sdk/crt/stdio/fgetc.c
trunk/reactos/lib/sdk/crt/stdio/fgetchar.c
trunk/reactos/lib/sdk/crt/stdio/fgetpos.c
trunk/reactos/lib/sdk/crt/stdio/fgets.c
trunk/reactos/lib/sdk/crt/stdio/fgetws.c
trunk/reactos/lib/sdk/crt/stdio/filbuf.c
trunk/reactos/lib/sdk/crt/stdio/fileno.c
trunk/reactos/lib/sdk/crt/stdio/flsbuf.c
trunk/reactos/lib/sdk/crt/stdio/fopen.c
trunk/reactos/lib/sdk/crt/stdio/fprintf.c
trunk/reactos/lib/sdk/crt/stdio/fputc.c
trunk/reactos/lib/sdk/crt/stdio/fputchar.c
trunk/reactos/lib/sdk/crt/stdio/fputs.c
trunk/reactos/lib/sdk/crt/stdio/fputws.c
trunk/reactos/lib/sdk/crt/stdio/fread.c
trunk/reactos/lib/sdk/crt/stdio/freopen.c
trunk/reactos/lib/sdk/crt/stdio/fseek.c
trunk/reactos/lib/sdk/crt/stdio/fsetpos.c
trunk/reactos/lib/sdk/crt/stdio/fsopen.c
trunk/reactos/lib/sdk/crt/stdio/ftell.c
trunk/reactos/lib/sdk/crt/stdio/fwalk.c
trunk/reactos/lib/sdk/crt/stdio/fwprintf.c
trunk/reactos/lib/sdk/crt/stdio/fwrite.c
trunk/reactos/lib/sdk/crt/stdio/getc.c
trunk/reactos/lib/sdk/crt/stdio/getchar.c
trunk/reactos/lib/sdk/crt/stdio/gets.c
trunk/reactos/lib/sdk/crt/stdio/getw.c
trunk/reactos/lib/sdk/crt/stdio/printf.c
trunk/reactos/lib/sdk/crt/stdio/putc.c
trunk/reactos/lib/sdk/crt/stdio/putchar.c
trunk/reactos/lib/sdk/crt/stdio/puts.c
trunk/reactos/lib/sdk/crt/stdio/putw.c
trunk/reactos/lib/sdk/crt/stdio/putwchar.c
trunk/reactos/lib/sdk/crt/stdio/remove.c
trunk/reactos/lib/sdk/crt/stdio/rename.c
trunk/reactos/lib/sdk/crt/stdio/rewind.c
trunk/reactos/lib/sdk/crt/stdio/rmtmp.c
trunk/reactos/lib/sdk/crt/stdio/setbuf.c
trunk/reactos/lib/sdk/crt/stdio/setvbuf.c
trunk/reactos/lib/sdk/crt/stdio/sprintf.c
trunk/reactos/lib/sdk/crt/stdio/stdhnd.c
trunk/reactos/lib/sdk/crt/stdio/swprintf.c
trunk/reactos/lib/sdk/crt/stdio/tempnam.c
trunk/reactos/lib/sdk/crt/stdio/tmpfile.c
trunk/reactos/lib/sdk/crt/stdio/tmpnam.c
trunk/reactos/lib/sdk/crt/stdio/ungetc.c
trunk/reactos/lib/sdk/crt/stdio/ungetwc.c
trunk/reactos/lib/sdk/crt/stdio/vfprintf.c
trunk/reactos/lib/sdk/crt/stdio/vfwprint.c
trunk/reactos/lib/sdk/crt/stdio/vprintf.c
trunk/reactos/lib/sdk/crt/stdio/vsprintf.c
trunk/reactos/lib/sdk/crt/stdio/vswprintf.c
trunk/reactos/lib/sdk/crt/stdio/vwprintf.c
trunk/reactos/lib/sdk/crt/stdio/wfdopen.c
trunk/reactos/lib/sdk/crt/stdio/wfopen.c
trunk/reactos/lib/sdk/crt/stdio/wfreopen.c
trunk/reactos/lib/sdk/crt/stdio/wfsopen.c
trunk/reactos/lib/sdk/crt/stdio/wprintf.c
trunk/reactos/lib/sdk/crt/stdio/wremove.c
trunk/reactos/lib/sdk/crt/stdio/wrename.c
trunk/reactos/lib/sdk/crt/stdio/wtempnam.c
trunk/reactos/lib/sdk/crt/stdio/wtmpnam.c
trunk/reactos/lib/sdk/crt/sys_stat/fstat.c
trunk/reactos/lib/sdk/crt/sys_stat/fstati64.c
trunk/reactos/lib/sdk/crt/sys_stat/futime.c
trunk/reactos/lib/sdk/crt/sys_stat/stat.c
trunk/reactos/lib/sdk/crt/sys_stat/wstat.c
trunk/reactos/lib/sdk/crt/wstring/wcsdup.c
trunk/reactos/lib/sdk/crt/wstring/wcspbrk.c
trunk/reactos/lib/sdk/crt/wstring/wcsrev.c
trunk/reactos/lib/sdk/crt/wstring/wcsset.c
Modified:
trunk/reactos/dll/win32/crtdll/crtdll.def
trunk/reactos/dll/win32/crtdll/dllmain.c
trunk/reactos/dll/win32/msvcrt/dllmain.c
trunk/reactos/dll/win32/msvcrt/msvcrt.def
trunk/reactos/include/crt/stdio.h
trunk/reactos/lib/sdk/crt/README.txt
trunk/reactos/lib/sdk/crt/conio/cputs.c
trunk/reactos/lib/sdk/crt/crt.rbuild
trunk/reactos/lib/sdk/crt/include/internal/file.h
trunk/reactos/lib/sdk/crt/include/internal/wine/msvcrt.h
trunk/reactos/lib/sdk/crt/libcntpr.rbuild
trunk/reactos/lib/sdk/crt/misc/stubs.c
trunk/reactos/lib/sdk/crt/precomp.h
trunk/reactos/lib/sdk/crt/process/process.c
trunk/reactos/lib/sdk/crt/stdio/file.c
trunk/reactos/lib/sdk/crt/stdio/popen.c
trunk/reactos/lib/sdk/crt/string/wcstod.c
trunk/reactos/lib/sdk/crt/wstring/wcscoll.c
[This mail would be too long, it was shortened to contain the URLs only.]
Modified: trunk/reactos/dll/win32/crtdll/crtdll.def
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/crtdll/crtdll.de…
Modified: trunk/reactos/dll/win32/crtdll/dllmain.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/crtdll/dllmain.c…
Modified: trunk/reactos/dll/win32/msvcrt/dllmain.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msvcrt/dllmain.c…
Modified: trunk/reactos/dll/win32/msvcrt/msvcrt.def
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msvcrt/msvcrt.de…
Modified: trunk/reactos/include/crt/stdio.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/crt/stdio.h?rev=33…
Modified: trunk/reactos/lib/sdk/crt/README.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/README.txt?rev…
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.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/crt.rbuild?rev…
Modified: trunk/reactos/lib/sdk/crt/include/internal/file.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/include/intern…
Added: 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/wine/msvcrt.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/include/intern…
Modified: trunk/reactos/lib/sdk/crt/libcntpr.rbuild
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/libcntpr.rbuil…
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/process/process.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/process/proces…
Copied: trunk/reactos/lib/sdk/crt/stdio/access.c (from r33896,
trunk/reactos/lib/sdk/crt/io/access.c)
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/access.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/allocfil.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/allocfil…
Removed: trunk/reactos/lib/sdk/crt/stdio/clearerr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/clearerr…
Removed: trunk/reactos/lib/sdk/crt/stdio/fclose.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fclose.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/fdopen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fdopen.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/feof.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/feof.c?r…
Removed: trunk/reactos/lib/sdk/crt/stdio/ferror.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/ferror.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/fflush.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fflush.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/fgetc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fgetc.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/fgetchar.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fgetchar…
Removed: trunk/reactos/lib/sdk/crt/stdio/fgetpos.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fgetpos.…
Removed: trunk/reactos/lib/sdk/crt/stdio/fgets.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fgets.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/fgetws.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fgetws.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/filbuf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/filbuf.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/fileno.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fileno.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/flsbuf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/flsbuf.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/fopen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fopen.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/fprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fprintf.…
Removed: trunk/reactos/lib/sdk/crt/stdio/fputc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fputc.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/fputchar.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fputchar…
Removed: trunk/reactos/lib/sdk/crt/stdio/fputs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fputs.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/fputws.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fputws.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/fread.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fread.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/freopen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/freopen.…
Removed: trunk/reactos/lib/sdk/crt/stdio/fseek.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fseek.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/fsetpos.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fsetpos.…
Removed: trunk/reactos/lib/sdk/crt/stdio/fsopen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fsopen.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/ftell.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/ftell.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/fwalk.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fwalk.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/fwprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fwprintf…
Removed: trunk/reactos/lib/sdk/crt/stdio/fwrite.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/fwrite.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/getc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/getc.c?r…
Removed: trunk/reactos/lib/sdk/crt/stdio/getchar.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/getchar.…
Removed: trunk/reactos/lib/sdk/crt/stdio/gets.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/gets.c?r…
Removed: trunk/reactos/lib/sdk/crt/stdio/getw.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/getw.c?r…
Copied: trunk/reactos/lib/sdk/crt/stdio/lnx_sprintf.c (from r33896,
trunk/reactos/lib/sdk/crt/stdio/sprintf.c)
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/lnx_spri…
Copied: trunk/reactos/lib/sdk/crt/stdio/lnx_vfprintf.c (from r33896,
trunk/reactos/lib/sdk/crt/stdio/vfprintf.c)
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/lnx_vfpr…
Copied: trunk/reactos/lib/sdk/crt/stdio/lnx_vfwprint.c (from r33896,
trunk/reactos/lib/sdk/crt/stdio/vfwprint.c)
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/lnx_vfwp…
Copied: trunk/reactos/lib/sdk/crt/stdio/lnx_vsprintf.c (from r33896,
trunk/reactos/lib/sdk/crt/stdio/vsprintf.c)
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/lnx_vspr…
Copied: trunk/reactos/lib/sdk/crt/stdio/lnx_vswprintf.c (from r33896,
trunk/reactos/lib/sdk/crt/stdio/vswprintf.c)
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/lnx_vswp…
Modified: trunk/reactos/lib/sdk/crt/stdio/popen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/popen.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/printf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/printf.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/putc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/putc.c?r…
Removed: trunk/reactos/lib/sdk/crt/stdio/putchar.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/putchar.…
Removed: trunk/reactos/lib/sdk/crt/stdio/puts.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/puts.c?r…
Removed: trunk/reactos/lib/sdk/crt/stdio/putw.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/putw.c?r…
Removed: trunk/reactos/lib/sdk/crt/stdio/putwchar.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/putwchar…
Removed: trunk/reactos/lib/sdk/crt/stdio/remove.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/remove.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/rename.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/rename.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/rewind.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/rewind.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/rmtmp.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/rmtmp.c?…
Removed: trunk/reactos/lib/sdk/crt/stdio/setbuf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/setbuf.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/setvbuf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/setvbuf.…
Removed: trunk/reactos/lib/sdk/crt/stdio/sprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/sprintf.…
Removed: trunk/reactos/lib/sdk/crt/stdio/stdhnd.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/stdhnd.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/swprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/swprintf…
Removed: trunk/reactos/lib/sdk/crt/stdio/tempnam.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/tempnam.…
Removed: trunk/reactos/lib/sdk/crt/stdio/tmpfile.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/tmpfile.…
Removed: trunk/reactos/lib/sdk/crt/stdio/tmpnam.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/tmpnam.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/ungetc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/ungetc.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/ungetwc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/ungetwc.…
Removed: trunk/reactos/lib/sdk/crt/stdio/vfprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/vfprintf…
Removed: trunk/reactos/lib/sdk/crt/stdio/vfwprint.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/vfwprint…
Removed: trunk/reactos/lib/sdk/crt/stdio/vprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/vprintf.…
Removed: trunk/reactos/lib/sdk/crt/stdio/vsprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/vsprintf…
Removed: trunk/reactos/lib/sdk/crt/stdio/vswprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/vswprint…
Removed: trunk/reactos/lib/sdk/crt/stdio/vwprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/vwprintf…
Removed: trunk/reactos/lib/sdk/crt/stdio/wfdopen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wfdopen.…
Removed: trunk/reactos/lib/sdk/crt/stdio/wfopen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wfopen.c…
Removed: trunk/reactos/lib/sdk/crt/stdio/wfreopen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wfreopen…
Removed: trunk/reactos/lib/sdk/crt/stdio/wfsopen.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wfsopen.…
Removed: trunk/reactos/lib/sdk/crt/stdio/wprintf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wprintf.…
Removed: trunk/reactos/lib/sdk/crt/stdio/wremove.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wremove.…
Removed: trunk/reactos/lib/sdk/crt/stdio/wrename.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wrename.…
Removed: trunk/reactos/lib/sdk/crt/stdio/wtempnam.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wtempnam…
Removed: trunk/reactos/lib/sdk/crt/stdio/wtmpnam.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdio/wtmpnam.…
Added: 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/wcstod.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/wcstod.…
Removed: trunk/reactos/lib/sdk/crt/sys_stat/fstat.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/sys_stat/fstat…
Removed: trunk/reactos/lib/sdk/crt/sys_stat/fstati64.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/sys_stat/fstat…
Removed: trunk/reactos/lib/sdk/crt/sys_stat/futime.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/sys_stat/futim…
Removed: trunk/reactos/lib/sdk/crt/sys_stat/stat.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/sys_stat/stat.…
Removed: trunk/reactos/lib/sdk/crt/sys_stat/wstat.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/sys_stat/wstat…
Modified: trunk/reactos/lib/sdk/crt/wstring/wcscoll.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/wstring/wcscol…
Removed: trunk/reactos/lib/sdk/crt/wstring/wcsdup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/wstring/wcsdup…
Removed: trunk/reactos/lib/sdk/crt/wstring/wcspbrk.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/wstring/wcspbr…
Removed: trunk/reactos/lib/sdk/crt/wstring/wcsrev.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/wstring/wcsrev…
Removed: trunk/reactos/lib/sdk/crt/wstring/wcsset.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/wstring/wcsset…