mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 09:04:39 +00:00
changes to build cmd again
svn path=/trunk/; revision=390
This commit is contained in:
parent
eda973b1cc
commit
464c5c2187
4 changed files with 29 additions and 3 deletions
|
@ -163,8 +163,10 @@ ExitProcess = ExitProcess@4
|
||||||
;FatalAppExitW@8
|
;FatalAppExitW@8
|
||||||
;FatalExit@4
|
;FatalExit@4
|
||||||
;FileTimeToDosDateTime@12
|
;FileTimeToDosDateTime@12
|
||||||
;FileTimeToLocalFileTime@8
|
FileTimeToLocalFileTime@8
|
||||||
;FileTimeToSystemTime@8
|
FileTimeToLocalFileTime = FileTimeToLocalFileTime@8
|
||||||
|
FileTimeToSystemTime@8
|
||||||
|
FileTimeToSystemTime = FileTimeToSystemTime@8
|
||||||
FillConsoleOutputAttribute@20
|
FillConsoleOutputAttribute@20
|
||||||
FillConsoleOutputAttribute = FillConsoleOutputAttribute@20
|
FillConsoleOutputAttribute = FillConsoleOutputAttribute@20
|
||||||
FillConsoleOutputCharacterA@20
|
FillConsoleOutputCharacterA@20
|
||||||
|
|
|
@ -441,6 +441,7 @@ RtlExtendedIntegerMultiply
|
||||||
_splitpath
|
_splitpath
|
||||||
_strcmpi
|
_strcmpi
|
||||||
_stricmp
|
_stricmp
|
||||||
|
_strlwr
|
||||||
_strnicmp
|
_strnicmp
|
||||||
_strupr
|
_strupr
|
||||||
atoi
|
atoi
|
||||||
|
|
|
@ -20,7 +20,7 @@ STDLIB_OBJECTS = stdlib/atoi.o stdlib/atol.o stdlib/splitp.o \
|
||||||
STRING_OBJECTS = string/ctype.o string/memcpy.o string/memmove.o \
|
STRING_OBJECTS = string/ctype.o string/memcpy.o string/memmove.o \
|
||||||
string/memset.o string/strcat.o string/strchr.o \
|
string/memset.o string/strcat.o string/strchr.o \
|
||||||
string/strcmp.o string/strcspn.o \
|
string/strcmp.o string/strcspn.o \
|
||||||
string/strcpy.o string/stricmp.o string/strlen.o \
|
string/strcpy.o string/stricmp.o string/strlen.o string/strlwr.o \
|
||||||
string/strncat.o string/strncmp.o string/strncpy.o \
|
string/strncat.o string/strncmp.o string/strncpy.o \
|
||||||
string/strnicmp.o string/strnlen.o string/strrchr.o \
|
string/strnicmp.o string/strnlen.o string/strrchr.o \
|
||||||
string/strstr.o string/strupr.o string/wstring.o
|
string/strstr.o string/strupr.o string/wstring.o
|
||||||
|
|
23
reactos/lib/ntdll/string/strlwr.c
Normal file
23
reactos/lib/ntdll/string/strlwr.c
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* The C RunTime DLL
|
||||||
|
*
|
||||||
|
* Implements C run-time functionality as known from UNIX.
|
||||||
|
*
|
||||||
|
* Copyright 1996,1998 Marcus Meissner
|
||||||
|
* Copyright 1996 Jukka Iivonen
|
||||||
|
* Copyright 1997 Uwe Bonnes
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
|
||||||
|
char * _strlwr(char *x)
|
||||||
|
{
|
||||||
|
char *y=x;
|
||||||
|
|
||||||
|
while (*y) {
|
||||||
|
*y=tolower(*y);
|
||||||
|
y++;
|
||||||
|
}
|
||||||
|
return x;
|
||||||
|
}
|
Loading…
Reference in a new issue