Re: [PATCH 3/2] msvcrt: Implement _wcslwr_s
7 Jan
2011
7 Jan
'11
8:24 p.m.
Le 07/01/2011 15:42, Detlef Riekenberg a écrit :
based on _strlwr_s
This let Radiotracker go further
/********************************************************************* + * _wcslwr_s (MSVCRT.@) + */ +int CDECL _wcslwr_s(WCHAR *str, MSVCRT_size_t len) +{ + WCHAR *ptr = str; + + if (!str || !len)
please use the MSVCRT_CHECK_PMT as done in the other _s msvcrt's functions A+ -- Eric Pouech "The problem with designing something completely foolproof is to underestimate the ingenuity of a complete idiot." (Douglas Adams)
5454
Age (days ago)
5454
Last active (days ago)
0 comments
1 participants
participants (1)
-
Eric Pouech