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
314 B
C
19 lines
314 B
C
/*
|
|
* numbers.h: header for numbers.c
|
|
*
|
|
* written by michael sandrof
|
|
*
|
|
* copyright(c) 1990
|
|
*
|
|
* see the copyright file, or do a help ircii copyright
|
|
*
|
|
* @(#)$Id$
|
|
*/
|
|
#ifndef NUMBERS_H_
|
|
#define NUMBERS_H_
|
|
|
|
char *numeric_banner(void);
|
|
void numbered_command(char *, int, char **);
|
|
|
|
#endif /* NUMBERS_H_ */
|