Files
bitchx/include/help.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

16 lines
249 B
C

/*
* help.h: header for help.c
*
* copyright(c) 1994 matthew green
*
* See the copyright file, or do a help ircii copyright
*
* @(#)$Id$
*/
#ifndef HELP_H_
#define HELP_H_
void help (char *, char *, char *, char *);
#endif /* HELP_H_ */