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_.
19 lines
281 B
C
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_ */
|