summaryrefslogtreecommitdiff
path: root/src/core/misc.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-06-17 13:16:42 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-06-17 13:16:42 +0000
commitf0d6ef99dcfdb92230d6ab63c69f5baf6510f867 (patch)
tree5aa77a53f73c372196cee6395f026deb92fbb3bd /src/core/misc.h
parent8c60237fbec24decaaa718a15467eaeab859d55c (diff)
downloadirssi-f0d6ef99dcfdb92230d6ab63c69f5baf6510f867.zip
Completion list is now sorted.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@360 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/misc.h')
-rw-r--r--src/core/misc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/misc.h b/src/core/misc.h
index b836e3dd..3df1dc94 100644
--- a/src/core/misc.h
+++ b/src/core/misc.h
@@ -40,6 +40,9 @@ char *convert_home(const char *path);
int g_istr_equal(gconstpointer v, gconstpointer v2);
unsigned int g_istr_hash(gconstpointer v);
+/* Case-insensitive GCompareFunc func */
+int g_istr_cmp(gconstpointer v, gconstpointer v2);
+
/* Find `mask' from `data', you can use * and ? wildcards. */
int match_wildcards(const char *mask, const char *data);