summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/libutil.h')
-rw-r--r--crawl-ref/source/libutil.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/libutil.h b/crawl-ref/source/libutil.h
index 63746ee8b6..e9d6d987b8 100644
--- a/crawl-ref/source/libutil.h
+++ b/crawl-ref/source/libutil.h
@@ -27,8 +27,9 @@ void cursorxy(int x, int y);
int unmangle_direction_keys(int keyin, int keymap = 0,
bool fake_ctrl = true, bool fake_shift = true);
-void lowercase(std::string &s);
-void uppercase(std::string &s);
+std::string lowercase_string(std::string s);
+std::string &lowercase(std::string &s);
+std::string &uppercase(std::string &s);
bool ends_with(const std::string &s, const std::string &suffix);
std::string pluralise(const std::string &name,
const char *no_of[] = NULL);