summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libgui.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-09-07 16:09:04 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-09-07 16:09:04 +0200
commit218de6a8af4f7b4165112c6fd55d95e184b9f565 (patch)
tree7092dc584f96f5c3857c33b7dcb8948c4c3435f2 /crawl-ref/source/libgui.h
parent5a1df532ff9e1c4ed2f1000392621789dc6dfafa (diff)
downloadcrawl-ref-218de6a8af4f7b4165112c6fd55d95e184b9f565.tar.gz
crawl-ref-218de6a8af4f7b4165112c6fd55d95e184b9f565.zip
Get rid of strlwr().
Besides being non-standard and present only on some platforms, it cannot be extended to Unicode as some characters expand or contract while being upper/lowercased.
Diffstat (limited to 'crawl-ref/source/libgui.h')
-rw-r--r--crawl-ref/source/libgui.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/libgui.h b/crawl-ref/source/libgui.h
index 5189b7f214..48d2ec83ff 100644
--- a/crawl-ref/source/libgui.h
+++ b/crawl-ref/source/libgui.h
@@ -55,10 +55,5 @@ GotoRegion get_cursor_region();
void delay(int ms);
void update_screen();
bool kbhit();
-
-#ifdef UNIX
-char *strlwr(char *str);
-#endif
-
#endif // USE_TILE
#endif // LIBGUI_H