Blog/content/posts/2023/c/debug.md
2023-03-08 23:20:50 +03:00

26 lines
552 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Константа DEBUG в Си"
date: 2023-03-08T23:15:46+03:00
draft: true
tags: [tips, development]
---
При компиляции кода есть возможность указать параметры компилятору.
Например можно вызвать **GCC** с флагом `-DEBUG`.
```c
#ifdef DEBUG
#endif
// или
#if defined(DEBUG)
#endif
```
Можно создать заголовочный файл `debug.h` и определить в нём константу `DEBUG`.
```c
#define DEBUG
```