COMMON: Move scumm_str(n)icmp declaration to str.h

This commit is contained in:
Max Horn 2011-05-31 14:19:25 +02:00
parent 1c198cec1b
commit e06ca6560f
2 changed files with 3 additions and 7 deletions

View File

@ -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)
//

View File

@ -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