From 4f8665fc836898ebf54fc73b1061125b748183bc Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 20 Feb 2012 16:03:39 +0100 Subject: COMMON: Move isFoo functions to namespace Common, add doxygen comments --- common/util.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'common/util.cpp') diff --git a/common/util.cpp b/common/util.cpp index 0a7d0f1e89..e605a267d5 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -415,9 +415,6 @@ void updateGameGUIOptions(const String &options, const String &langOption) { } } -} // End of namespace Common - - // // TODO: Instead of a blind cast, we might want to verify // if c equals EOS; and/or is in the range -255..+255; @@ -435,10 +432,6 @@ bool isDigit(int c) { return isdigit((byte)c); } -bool isNumber(int c) { - return isnumber((byte)c); -} - bool isLower(int c) { return islower((byte)c); } @@ -450,3 +443,5 @@ bool isSpace(int c) { bool isUpper(int c) { return isupper((byte)c); } + +} // End of namespace Common -- cgit v1.2.3