From e06ca6560f6c4295a9cd3828abfbeec5286630c6 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 31 May 2011 14:19:25 +0200 Subject: COMMON: Move scumm_str(n)icmp declaration to str.h --- common/scummsys.h | 7 ------- common/str.h | 3 +++ 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 @@ -287,13 +287,6 @@ #endif -// -// 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) // 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 -- cgit v1.2.3