Files
bitchx/include/mail.h
Kevin Easton 3f87eb31b1 Standardise header include guards
Tokens that begin with two underscores __* or an underscore and an uppercase letter _X* are reserved,
so we should avoid those for our own include guards.  The standard I'm settling on for foo.h is FOO_H_.
2017-05-10 23:30:11 +10:00

19 lines
281 B
C

/*
* mail.h: header for mail.c
*
* Written By Michael Sandrof
*
* Copyright(c) 1990
*
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*
* @(#)$Id$
*/
#ifndef MAIL_H_
#define MAIL_H_
char *check_mail (void);
int check_mail_status (void);
#endif /* MAIL_H_ */