MODE READER
[citadel.git] / citadel / modules / nntp / serv_nntp.h
index 0a734c428abd002f9cfb58b4b1ad476fccac68a6..31295ce1614d0e154e53fbc44b991a13a12a4ce4 100644 (file)
@@ -23,6 +23,18 @@ struct nntp_msglist {
 // data passed by the LIST commands to its helper function
 struct nntp_list_data {
        int list_format;
+       char *wildmat_pattern;
 };
 
 
+/*
+ * data passed between nntp_listgroup() and nntp_listgroup_backend()
+ */
+struct listgroup_range {
+       long lo;
+       long hi;
+};
+
+
+int wildmat(const char *text, const char *p);
+