about summary refs log tree commit diff
path: root/imap.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-09 22:25:00 -0400
committerJune McEnroe <june@causal.agency>2020-04-09 22:25:00 -0400
commit78d880bcfe4799f069bba4ad79c6332c25d6db04 (patch)
tree8531af4ec57f9ce471718d5a298f26d9bfa3b332 /imap.h
parentRender Atom envelopes (diff)
downloadbubger-78d880bcfe4799f069bba4ad79c6332c25d6db04.tar.gz
bubger-78d880bcfe4799f069bba4ad79c6332c25d6db04.zip
Move export code to export.c
Diffstat (limited to 'imap.h')
-rw-r--r--imap.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/imap.h b/imap.h
index e4ac7ea..f9b3106 100644
--- a/imap.h
+++ b/imap.h
@@ -14,6 +14,9 @@
  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
+#ifndef IMAP_H
+#define IMAP_H
+
 #include <err.h>
 #include <stdbool.h>
 #include <stdint.h>
@@ -136,3 +139,5 @@ static inline void respFree(struct Resp resp) {
 extern bool imapVerbose;
 FILE *imapOpen(const char *host, const char *port);
 struct Resp imapResp(FILE *imap);
+
+#endif /* IMAP_H */