summaryrefslogtreecommitdiff
path: root/string.h
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-11-28 14:12:09 +0000
committerDarkvater <darkvater@openttd.org>2006-11-28 14:12:09 +0000
commit0693970c7c61a7ff5bd5c55af347742fb87ae1d8 (patch)
treeecd44c260a67f0d8745adf02994ad19ff51fbb8f /string.h
parent470c383738d84b9e2e1e202fec2633d10f6e1712 (diff)
downloadopenttd-0693970c7c61a7ff5bd5c55af347742fb87ae1d8.tar.xz
(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.
Diffstat (limited to 'string.h')
-rw-r--r--string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.h b/string.h
index c795b3336..d5f637719 100644
--- a/string.h
+++ b/string.h
@@ -43,7 +43,7 @@ typedef enum CharSetFilter {
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;