Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 235 Bytes

Preprocessors.md

File metadata and controls

17 lines (13 loc) · 235 Bytes

Avoid multiple inclusion

the standard and compiler safe method:

#ifndef CUBE_H
#define CUBE_H
// the header body
#endif

the easer and fast-compiled, but non-standard method:

#pragma once
// the header body