~vcs-imports/busybox/trunk

« back to all changes in this revision

Viewing changes to mailutils/mail.h

  • Committer: Denys Vlasenko
  • Author(s): Christian Franke
  • Date: 2023-11-13 10:32:35 UTC
  • Revision ID: git-v1:a63b60bdd6fa26b867c80d44074118babbae7ffd
Cygwin: regenerate defconfig

Signed-off-by: Christian Franke <christian.franke@t-online.de>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
        pid_t helper_pid;
12
12
        unsigned timeout;
13
13
        unsigned verbose;
14
 
        unsigned opts;
15
14
        char *user;
16
15
        char *pass;
17
16
        FILE *fp0; // initial stdin
19
18
};
20
19
 
21
20
#define G (*ptr_to_globals)
22
 
#define timeout         (G.timeout  )
23
 
#define verbose         (G.verbose  )
24
 
#define opts            (G.opts     )
25
21
#define INIT_G() do { \
26
22
        SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
27
23
        G.opt_charset = (char *)CONFIG_FEATURE_MIME_CHARSET; \
32
28
void launch_helper(const char **argv) FAST_FUNC;
33
29
void get_cred_or_die(int fd) FAST_FUNC;
34
30
 
 
31
void send_r_n(const char *s) FAST_FUNC;
35
32
char *send_mail_command(const char *fmt, const char *param) FAST_FUNC;
36
33
 
37
34
void printbuf_base64(const char *buf, unsigned len) FAST_FUNC;