mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
67dbd24ece
This function goes away in gmime-3.0. Also, the memory management is apparently error prone, witness the memory leak in notmuch-reply.
14 lines
267 B
C
14 lines
267 B
C
#ifndef _GMIME_EXTRA_H
|
|
#define _GMIME_EXTRA_H
|
|
#include <gmime/gmime.h>
|
|
|
|
GMimeStream *g_mime_stream_stdout_new(void);
|
|
|
|
#include <talloc.h>
|
|
|
|
/**
|
|
* return talloc allocated date string
|
|
*/
|
|
char *g_mime_message_get_date_string (void *ctx, GMimeMessage *message);
|
|
|
|
#endif
|