summaryrefslogtreecommitdiff
path: root/src/string_func.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-04-30 14:24:23 +0000
committerrubidium <rubidium@openttd.org>2011-04-30 14:24:23 +0000
commit46c242b1dc790e7e55b739dcf5e4133c4ab2e8b2 (patch)
tree5f984a3e93055cd737f8d089e33919d13db8553b /src/string_func.h
parent1c1e9f69419aa49bfae9fd2975957d4e0b890fb8 (diff)
downloadopenttd-46c242b1dc790e7e55b739dcf5e4133c4ab2e8b2.tar.xz
(svn r22385) -Fix [FS#4603]: strnatcmp is in string.cpp, so it ought to be declared in string_func.h.
Diffstat (limited to 'src/string_func.h')
-rw-r--r--src/string_func.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string_func.h b/src/string_func.h
index 27cff81f7..1fb58b46a 100644
--- a/src/string_func.h
+++ b/src/string_func.h
@@ -210,4 +210,6 @@ char *strndup(const char *s, size_t len);
char *strcasestr(const char *haystack, const char *needle);
#endif /* strcasestr is available */
+int strnatcmp(const char *s1, const char *s2);
+
#endif /* STRING_FUNC_H */