(svn r7271) -Codechange: Revert the strtolower part of r7199 as it can actually become broken due to
authorDarkvater
Tue, 28 Nov 2006 14:12:09 +0000
changeset 5164 54755bc93577
parent 5163 459b243f8413
child 5165 028df092bebd
(svn r7271) -Codechange: Revert the strtolower part of r7199 as it can actually become broken due to
different codepages. See comments for strtolower function for more information.
string.c
string.h
Binary file string.c has changed
--- a/string.h	Mon Nov 27 23:11:56 2006 +0000
+++ b/string.h	Tue Nov 28 14:12:09 2006 +0000
@@ -43,7 +43,7 @@
 	CS_ALPHA,             //! Only alphabetic values
 } CharSetFilter;
 
-/** Convert the given string to lowercase */
+/** Convert the given string to lowercase, only works with ASCII! */
 void strtolower(char *str);
 
 typedef uint32 WChar;