diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-02-17 13:39:30 +0100 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-02-17 13:39:30 +0100 |
| commit | 79b631a2572748606431fd4e3c1ee38a47cad5a9 (patch) | |
| tree | 43b29b4b510d76123b8f486fa8f528c6f200229e /src/config.h | |
| parent | 5ae0aa3e092c56ee856a1c47d2978af00c108451 (diff) | |
| download | BobinkCOpcUa-79b631a2572748606431fd4e3c1ee38a47cad5a9.tar.gz BobinkCOpcUa-79b631a2572748606431fd4e3c1ee38a47cad5a9.zip | |
Add comments to build files and shell scripts, fix minor inconsistencies
- CMakeLists.txt: add file-level comment, section banners, target
docs, and test-section explanation
- cmake/BuildDeps.cmake: add file-level comment describing the
configure/build/install workflow
- tools/generate_certificate.sh: document arguments and outputs in
header block, comment set -euo pipefail
- src/config.h: move include guard before Doxygen block (match
common.h)
- src/server_register.c: add comment to empty anonymous-auth block
(match client_find_servers.c)
Diffstat (limited to 'src/config.h')
| -rw-r--r-- | src/config.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config.h b/src/config.h index ee29ada..649278d 100644 --- a/src/config.h +++ b/src/config.h @@ -1,3 +1,6 @@ +#ifndef DISCOVERY_CONFIG_H +#define DISCOVERY_CONFIG_H + /** * @file config.h * @brief Simple key=value configuration file parser. @@ -8,9 +11,6 @@ * trustList). */ -#ifndef DISCOVERY_CONFIG_H -#define DISCOVERY_CONFIG_H - #include <stddef.h> /** |
