Renamed SUBS command to LSUB and changed its parameters. Subscription Type no longer...
[citadel.git] / libcitadel / lib / libcitadel.h
index 54bf8d99285f28e1ac822f3298caca582e8bb51f..7740dc190215815d72a4d271b892801c95548f9a 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Header file for libcitadel
  *
- * Copyright (c) 1987-2019 by the citadel.org team
+ * Copyright (c) 1987-2021 by the citadel.org team
  *
  * This program is open source software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 3.
@@ -26,7 +26,7 @@
 #include <sys/types.h>
 #include <netinet/in.h>
 
-#define LIBCITADEL_VERSION_NUMBER      926
+#define LIBCITADEL_VERSION_NUMBER      931
 
 /*
  * Here's a bunch of stupid magic to make the MIME parser portable.
@@ -452,6 +452,7 @@ void array_free(Array *arr);
 void array_append(Array *arr, void *new_element);
 void *array_get_element_at(Array *arr, int index);
 int array_len(Array *arr);
+void array_sort(Array *arr, int (*compar)(const void *, const void *));
 
 
 /* vCard stuff */