From 79b631a2572748606431fd4e3c1ee38a47cad5a9 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Tue, 17 Feb 2026 13:39:30 +0100 Subject: 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) --- src/config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/config.h') 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 /** -- cgit v1.2.3