home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day21
/
prog.h
< prev
next >
Wrap
Text File
|
2002-05-22
|
223b
|
13 lines
/* prog.h - A header file with a check to prevent multiple includes! */
#if defined( prog_h )
/* the file has been included already */
#else
#define prog_h
/* Header file information goes here... */
#endif