aboutsummaryrefslogtreecommitdiff
path: root/common/str.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/str.h')
-rw-r--r--common/str.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/str.h b/common/str.h
index 21c0483a04..7b97dfe945 100644
--- a/common/str.h
+++ b/common/str.h
@@ -17,9 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $URL$
- * $Id$
*/
#ifndef COMMON_STRING_H
@@ -41,7 +38,7 @@ namespace Common {
* a certain length do we allocate a buffer on the heap.
*
* The presence of \0 characters in the string will cause undefined
- * behaviour in some operations.
+ * behavior in some operations.
*/
class String {
protected:
@@ -381,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