From 7b8d8d9c300bc0b21750e79fa37493e2acb7413e Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 12 Dec 2020 02:44:59 -0500 Subject: Rewrite main loop linearly --- imap.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'imap.h') diff --git a/imap.h b/imap.h index c6d96f5..2730d1a 100644 --- a/imap.h +++ b/imap.h @@ -157,6 +157,13 @@ struct Resp { const char *text; }; +static inline struct Resp respOk(struct Resp resp) { + if (resp.resp == AtomNo || resp.resp == AtomBad || resp.resp == AtomBye) { + errx(EX_CONFIG, "%s: %s", Atoms[resp.tag], resp.text); + } + return resp; +} + static inline void respFree(struct Resp resp) { listFree(resp.code); listFree(resp.data); -- cgit 1.4.1