NeoMutt
2024-10-02-37-gfa9146
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
shared.h
Go to the documentation of this file.
1
23
#ifndef MUTT_MH_SHARED_H
24
#define MUTT_MH_SHARED_H
25
26
#include <stdbool.h>
27
#include <stdio.h>
28
#include <sys/types.h>
29
30
struct
Mailbox
;
31
32
bool
mh_mkstemp
(
struct
Mailbox
*m, FILE **fp,
char
**tgt);
33
mode_t
mh_umask
(
struct
Mailbox
*m);
34
35
#endif
/* MUTT_MH_SHARED_H */
mh_mkstemp
bool mh_mkstemp(struct Mailbox *m, FILE **fp, char **tgt)
Create a temporary file.
Definition:
shared.c:73
mh_umask
mode_t mh_umask(struct Mailbox *m)
Create a umask from the mailbox directory.
Definition:
shared.c:49
Mailbox
A mailbox.
Definition:
mailbox.h:79