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_.
12 lines
161 B
C
12 lines
161 B
C
/*
|
|
* Written and CopyRight by Colten Edwards 03-09-96
|
|
*
|
|
*
|
|
*/
|
|
#ifndef CHELP_H_
|
|
#define CHELP_H_
|
|
|
|
extern void chelp (char *, char *, char *, char *);
|
|
|
|
#endif
|