Skip to main content

7 docs tagged with "Preprocessor"

View All Tags

Diagnostic directives

Shows the given error message and renders the program ill-formed, or shows the given warning message without affecting the validity of the program.

Preprocessor

The preprocessor is executed at translation phase 4, before the compilation. The result of preprocessing is a single file which is then passed to the actual compiler.

Replacing text macros

The preprocessor supports text macro replacement. Function-like text macro replacement is also supported.

Source file inclusion

Includes other source file into current source file at the line immediately after the directive.

7 docs tagged with "Preprocessor"

View All Tags

Diagnostic directives

Shows the given error message and renders the program ill-formed, or shows the given warning message without affecting the validity of the program.

Preprocessor

The preprocessor is executed at translation phase 4, before the compilation. The result of preprocessing is a single file which is then passed to the actual compiler.

Replacing text macros

The preprocessor supports text macro replacement. Function-like text macro replacement is also supported.

Source file inclusion

Includes other source file into current source file at the line immediately after the directive.