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_.
16 lines
258 B
C
16 lines
258 B
C
/*
|
|
* queue.h: header for queue.c
|
|
*
|
|
* copyright(c) 1994 matthew green
|
|
*
|
|
* See the copyright file, or do a help ircii copyright
|
|
*
|
|
* @(#)$Id$
|
|
*/
|
|
#ifndef QUEUE_H_
|
|
#define QUEUE_H_
|
|
|
|
void queuecmd (char *, char *, char *, char *);
|
|
|
|
#endif /* QUEUE_H_ */
|