aboutsummaryrefslogtreecommitdiff
path: root/common/util.cpp
diff options
context:
space:
mode:
authorMax Horn2012-02-20 16:03:39 +0100
committerMax Horn2012-02-20 16:18:27 +0100
commit4f8665fc836898ebf54fc73b1061125b748183bc (patch)
treeae393cd0822fab01bdcc38bd003ab186955eb270 /common/util.cpp
parent658080deeda79d20ea40643569fbcb072573e7cf (diff)
downloadscummvm-rg350-4f8665fc836898ebf54fc73b1061125b748183bc.tar.gz
scummvm-rg350-4f8665fc836898ebf54fc73b1061125b748183bc.tar.bz2
scummvm-rg350-4f8665fc836898ebf54fc73b1061125b748183bc.zip
COMMON: Move isFoo functions to namespace Common, add doxygen comments
Diffstat (limited to 'common/util.cpp')
-rw-r--r--common/util.cpp9
1 files changed, 2 insertions, 7 deletions
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