aboutsummaryrefslogtreecommitdiff
path: root/lib/messages.c
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2018-09-03 18:02:25 -0300
committerDavid Bremner <david@tethera.net>2018-09-06 08:07:13 -0300
commitdc3cc18bf0c649dfdb280a7afbb3b6039101f281 (patch)
treeda01c70956c774f4f617e4dddf2c33691b7fe1be /lib/messages.c
parent040fd630bf74eb8be75633bf3cbdb0c38d0f16f2 (diff)
lib: add _notmuch_message_list_empty
There is no public notmuch_message_list_t public interface, so to this is added to the private API. We use it immediately in thread.cc; future commits will use it further.
Diffstat (limited to 'lib/messages.c')
-rw-r--r--lib/messages.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/messages.c b/lib/messages.c
index a88f974f..ba8a9777 100644
--- a/lib/messages.c
+++ b/lib/messages.c
@@ -56,6 +56,15 @@ _notmuch_message_list_add_message (notmuch_message_list_t *list,
list->tail = &node->next;
}
+bool
+_notmuch_message_list_empty (notmuch_message_list_t *list)
+{
+ if (list == NULL)
+ return TRUE;
+
+ return (list->head == NULL);
+}
+
notmuch_messages_t *
_notmuch_messages_create (notmuch_message_list_t *list)
{