summaryrefslogtreecommitdiff
path: root/notmuch-private.h
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-11-02 16:08:24 -0800
committerCarl Worth <cworth@cworth.org>2009-11-02 16:08:24 -0800
commitdac7e1d4b15af5a7fa6cce3112bc08eb8e8f02e6 (patch)
tree4d8b4f64f253c3bc458f09575c69fd5e5932ec1a /notmuch-private.h
parentab2d904e060c6dada013f8bd731fbb4ff824b040 (diff)
Remove notmuch_message_get_header_size and notmuch_message_get_all_headers
The notmuch.c main program now uses GMime directly rather than using these functions, and I'd rather not export any functions unless we have good evidence that the functions are necessary.
Diffstat (limited to 'notmuch-private.h')
-rw-r--r--notmuch-private.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/notmuch-private.h b/notmuch-private.h
index 99fbb4b..92b4634 100644
--- a/notmuch-private.h
+++ b/notmuch-private.h
@@ -278,24 +278,6 @@ const char *
notmuch_message_file_get_header (notmuch_message_file_t *message,
const char *header);
-/* Get the entire set of headers from an email message as a string.
- *
- * The returned value is owned by the notmuch message and is valid
- * only until the message is closed. The caller should copy it if
- * needing to modify the value or to hold onto it for longer.
- *
- * Returns NULL in the case of any error.
- */
-const char *
-notmuch_message_file_get_all_headers (notmuch_message_file_t *message);
-
-/* Get the size in bytes of the full header section of 'message'.
- *
- * Returns 0 in the case of any error.
- */
-size_t
-notmuch_message_file_get_header_size (notmuch_message_file_t *message);
-
/* date.c */
/* Parse an RFC 8222 date string to a time_t value.