Format
#ifndef Name
Args
Name: A macro definition.
The #ifndef
statement is used to conditionally compile code. It is equivalent to #if !defined(Name)
.
#ifndef Name
Name: A macro definition.
The #ifndef
statement is used to conditionally compile code. It is equivalent to #if !defined(Name)
.