NeoMutt  2024-04-25-1-g3de005
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
30struct Mailbox;
31
32bool mh_mkstemp(struct Mailbox *m, FILE **fp, char **tgt);
33mode_t mh_umask (struct Mailbox *m);
34
35#endif /* MUTT_MH_SHARED_H */
bool mh_mkstemp(struct Mailbox *m, FILE **fp, char **tgt)
Create a temporary file.
Definition: shared.c:73
mode_t mh_umask(struct Mailbox *m)
Create a umask from the mailbox directory.
Definition: shared.c:49
A mailbox.
Definition: mailbox.h:79