COMMON: Move scumm_str(n)icmp declaration to str.h
This commit is contained in:
parent
1c198cec1b
commit
e06ca6560f
2 changed files with 3 additions and 7 deletions
|
@ -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)
|
||||
//
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue