Headers
#include "HEADER"
#include "myfile.h"
- Includes a user-defined header file.
#ifndef HEADER
#ifndef LIST_H
#define LIST_H
...
#endif /* !LIST_H */
- Prevents multiple inclusions of a header
file.
#ifndef LIST_H
#define LIST_H
...
#endif /* !LIST_H */
- Prevents multiple inclusions of a header file.