aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2011-05-31 14:19:25 +0200
committerMax Horn2011-05-31 14:19:25 +0200
commite06ca6560f6c4295a9cd3828abfbeec5286630c6 (patch)
tree944a638a1b8abfa71d364c0d9b8545353fa52fd8
parent1c198cec1b7f0f3025ca1db26a8d44b7584c6eee (diff)
downloadscummvm-rg350-e06ca6560f6c4295a9cd3828abfbeec5286630c6.tar.gz
scummvm-rg350-e06ca6560f6c4295a9cd3828abfbeec5286630c6.tar.bz2
scummvm-rg350-e06ca6560f6c4295a9cd3828abfbeec5286630c6.zip
COMMON: Move scumm_str(n)icmp declaration to str.h
-rw-r--r--common/scummsys.h7
-rw-r--r--common/str.h3
2 files changed, 3 insertions, 7 deletions
diff --git a/common/scummsys.h b/common/scummsys.h
index a09d6fd85f..7b81dabece 100644
--- a/common/scummsys.h
+++ b/common/scummsys.h
@@ -288,13 +288,6 @@
//
-// Define scumm_stricmp and scumm_strnicmp
-//
-extern int scumm_stricmp(const char *s1, const char *s2);
-extern int scumm_strnicmp(const char *s1, const char *s2, uint n);
-
-
-//
// Overlay color type (FIXME: shouldn't be declared here)
//
#if defined(NEWGUI_256)
diff --git a/common/str.h b/common/str.h
index b85c3812a7..7b97dfe945 100644
--- a/common/str.h
+++ b/common/str.h
@@ -378,4 +378,7 @@ size_t strlcat(char *dst, const char *src, size_t size);
} // End of namespace Common
+extern int scumm_stricmp(const char *s1, const char *s2);
+extern int scumm_strnicmp(const char *s1, const char *s2, uint n);
+
#endif