]> git.notmuchmail.org Git - notmuch/blobdiff - message.cc
Remove notmuch_message_get_header_size and notmuch_message_get_all_headers
[notmuch] / message.cc
index 154efa0fd47ebde90460ed1516256715b902f723..a7a0cb52eeec99f34d867d264bb5d42619ddfe31 100644 (file)
@@ -259,27 +259,6 @@ notmuch_message_get_header (notmuch_message_t *message, const char *header)
     return notmuch_message_file_get_header (message->message_file, header);
 }
 
-const char *
-notmuch_message_get_all_headers (notmuch_message_t *message)
-{
-    _notmuch_message_ensure_message_file (message);
-    if (message->message_file == NULL)
-       return NULL;
-
-    return notmuch_message_file_get_all_headers (message->message_file);
-}
-
-size_t
-notmuch_message_get_header_size (notmuch_message_t *message)
-{
-    _notmuch_message_ensure_message_file (message);
-    if (message->message_file == NULL)
-       return 0;
-
-    return notmuch_message_file_get_header_size (message->message_file);
-
-}
-
 const char *
 notmuch_message_get_thread_id (notmuch_message_t *message)
 {