summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-06-08 16:28:08 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-06-08 18:25:31 +0200
commitbb8cc240470638dd85c4e5709df77b4aa4e3deeb (patch)
tree6cbed5391a9b473362aa756e5ebb6b022a42824e /crawl-ref/source/libutil.h
parent04d7ba450959a100ab5b31c19cc6f7b5341deda3 (diff)
downloadcrawl-ref-bb8cc240470638dd85c4e5709df77b4aa4e3deeb.tar.gz
crawl-ref-bb8cc240470638dd85c4e5709df77b4aa4e3deeb.zip
Show some internal info about saves.
Diffstat (limited to 'crawl-ref/source/libutil.h')
-rw-r--r--crawl-ref/source/libutil.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/libutil.h b/crawl-ref/source/libutil.h
index e0a4ee4a2d..de108c33c1 100644
--- a/crawl-ref/source/libutil.h
+++ b/crawl-ref/source/libutil.h
@@ -74,7 +74,8 @@ bool ends_with(const std::string &s, const std::string &suffix);
#ifdef UNIX
extern "C" int stricmp(const char *str1, const char *str2);
#endif
-int numcmp(const char *a, const char *b, int limit);
+int numcmp(const char *a, const char *b, int limit = 0);
+bool numcmpstr(std::string a, std::string b);
size_t strlcpy(char *dst, const char *src, size_t n);
int strwidth(const char *s);