make unit of all temperatures selectable
[monky] / src / mail.h
1 #ifndef MAIL_H_
2 #define MAIL_H_
3
4 extern char *current_mail_spool;
5
6 struct local_mail_s {
7         char *box;
8         int mail_count;
9         int new_mail_count;
10         float interval;
11         time_t last_mtime;
12         double last_update;
13 };
14
15 void update_mail_count(struct local_mail_s *);
16
17 #endif /*MAIL_H_*/