NeoMutt  2023-05-17-16-g61469c
Teaching an old dog new tricks
DOXYGEN
edata.c
Go to the documentation of this file.
1
29#include "config.h"
30#include <stddef.h>
31#include "mutt/lib.h"
32#include "email/lib.h"
33#include "edata.h"
34
38void nntp_edata_free(void **ptr)
39{
40 FREE(ptr);
41}
42
48{
49 return mutt_mem_calloc(1, sizeof(struct NntpEmailData));
50}
51
58{
59 if (!e)
60 return NULL;
61 return e->edata;
62}
Structs that make up an email.
void * mutt_mem_calloc(size_t nmemb, size_t size)
Allocate zeroed memory on the heap.
Definition: memory.c:50
#define FREE(x)
Definition: memory.h:43
Convenience wrapper for the library headers.
struct NntpEmailData * nntp_edata_get(struct Email *e)
Get the private data for this Email.
Definition: edata.c:57
void nntp_edata_free(void **ptr)
Free the private Email data - Implements Email::edata_free()
Definition: edata.c:38
struct NntpEmailData * nntp_edata_new(void)
Create a new NntpEmailData for an Email.
Definition: edata.c:47
Pop-specific Email data.
The envelope/body of an email.
Definition: email.h:37
void * edata
Driver-specific data.
Definition: email.h:72
NNTP-specific Email data -.
Definition: edata.h:35