Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenwcslwr.c
Go to the documentation of this file.
00001 /* 00002 * The C RunTime DLL 00003 * 00004 * Implements C run-time functionality as known from UNIX. 00005 * 00006 * Copyright 1996,1998 Marcus Meissner 00007 * Copyright 1996 Jukka Iivonen 00008 * Copyright 1997 Uwe Bonnes 00009 */ 00010 00011 #include <precomp.h> 00012 00013 /* 00014 * @implemented 00015 */ 00016 wchar_t * _wcslwr(wchar_t *x) 00017 { 00018 wchar_t *y=x; 00019 00020 while (*y) { 00021 *y=towlower(*y); 00022 y++; 00023 } 00024 return x; 00025 } Generated on Fri May 25 2012 04:35:11 for ReactOS by
1.7.6.1
|