diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index 93e9ad652..709492ab8 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -579,8 +579,6 @@ Example in C: [source,c] ---- /* - * weechat.c - core functions for WeeChat - * * SPDX-FileCopyrightText: 2025 Your Name * * SPDX-License-Identifier: GPL-3.0-or-later @@ -600,6 +598,8 @@ Example in C: * You should have received a copy of the GNU General Public License * along with WeeChat. If not, see . */ + +/* Core functions for WeeChat */ ---- [[coding_c_style]] diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index 90394e5be..c756e3814 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -580,8 +580,6 @@ Exemple en C : [source,c] ---- /* - * weechat.c - core functions for WeeChat - * * SPDX-FileCopyrightText: 2025 Your Name * * SPDX-License-Identifier: GPL-3.0-or-later @@ -601,6 +599,8 @@ Exemple en C : * You should have received a copy of the GNU General Public License * along with WeeChat. If not, see . */ + +/* Core functions for WeeChat */ ---- [[coding_c_style]] diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index 33244199d..e4e8d1ec8 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -700,8 +700,6 @@ WeeChat とプラグインの翻訳は gettext で行います、ファイルは [source,c] ---- /* - * weechat.c - core functions for WeeChat - * * SPDX-FileCopyrightText: 2025 Your Name * * SPDX-License-Identifier: GPL-3.0-or-later @@ -721,6 +719,8 @@ WeeChat とプラグインの翻訳は gettext で行います、ファイルは * You should have received a copy of the GNU General Public License * along with WeeChat. If not, see . */ + +/* Core functions for WeeChat */ ---- [[coding_c_style]] diff --git a/doc/sr/weechat_dev.sr.adoc b/doc/sr/weechat_dev.sr.adoc index 8cf7e4173..47553c020 100644 --- a/doc/sr/weechat_dev.sr.adoc +++ b/doc/sr/weechat_dev.sr.adoc @@ -575,8 +575,6 @@ WeeChat „језгро” се налази у следећим директо [source,c] ---- /* - * weechat.c - core functions for WeeChat - * * SPDX-FileCopyrightText: 2025 Your Name * * SPDX-License-Identifier: GPL-3.0-or-later @@ -596,6 +594,8 @@ WeeChat „језгро” се налази у следећим директо * You should have received a copy of the GNU General Public License * along with WeeChat. If not, see . */ + +/* Core functions for WeeChat */ ---- [[coding_c_style]] diff --git a/src/core/core-arraylist.c b/src/core/core-arraylist.c index b3135f56a..f3be17278 100644 --- a/src/core/core-arraylist.c +++ b/src/core/core-arraylist.c @@ -1,6 +1,4 @@ /* - * core-arraylist.c - array lists management - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Array lists management */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-backtrace.c b/src/core/core-backtrace.c index 2cb4ad302..33000084b 100644 --- a/src/core/core-backtrace.c +++ b/src/core/core-backtrace.c @@ -1,6 +1,4 @@ /* - * core-backtrace.c - backtrace after a segfault - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Backtrace after a segfault */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-calc.c b/src/core/core-calc.c index e56b3c21b..411107e2c 100644 --- a/src/core/core-calc.c +++ b/src/core/core-calc.c @@ -1,6 +1,4 @@ /* - * core-calc.c - calculate result of an expression - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Calculate result of an expression */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-command.c b/src/core/core-command.c index 90e246ba9..23a4916d4 100644 --- a/src/core/core-command.c +++ b/src/core/core-command.c @@ -1,6 +1,4 @@ /* - * core-command.c - WeeChat core commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2006 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat core commands */ + /* this define is needed for strptime() (not on OpenBSD/Sun) */ #if !defined(__OpenBSD__) && !defined(__sun) #define _XOPEN_SOURCE 700 diff --git a/src/core/core-completion.c b/src/core/core-completion.c index df7862cbf..c1c882184 100644 --- a/src/core/core-completion.c +++ b/src/core/core-completion.c @@ -1,6 +1,4 @@ /* - * core-completion.c - completion for WeeChat commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2006 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Completion for WeeChat commands */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-config-file.c b/src/core/core-config-file.c index b33de2a6d..b04803f14 100644 --- a/src/core/core-config-file.c +++ b/src/core/core-config-file.c @@ -1,6 +1,4 @@ /* - * core-config-file.c - configuration files/sections/options management - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2006 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Configuration files/sections/options management */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-config.c b/src/core/core-config.c index 0dc3f20ed..bfea1400b 100644 --- a/src/core/core-config.c +++ b/src/core/core-config.c @@ -1,6 +1,4 @@ /* - * core-config.c - WeeChat configuration options (file weechat.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2006 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat configuration options (file weechat.conf) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-crypto.c b/src/core/core-crypto.c index d55a7a9cd..dfce6998f 100644 --- a/src/core/core-crypto.c +++ b/src/core/core-crypto.c @@ -1,6 +1,4 @@ /* - * core-crypto.c - cryptographic functions - * * SPDX-FileCopyrightText: 2018-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Cryptographic functions */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-debug.c b/src/core/core-debug.c index 9c6adcaf0..bd8a517fd 100644 --- a/src/core/core-debug.c +++ b/src/core/core-debug.c @@ -1,6 +1,4 @@ /* - * core-debug.c - debug functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Debug functions */ + /* for wcwidth in wchar.h */ #define _XOPEN_SOURCE diff --git a/src/core/core-dir.c b/src/core/core-dir.c index d27f0a70a..592e44dd0 100644 --- a/src/core/core-dir.c +++ b/src/core/core-dir.c @@ -1,6 +1,4 @@ /* - * core-dir.c - directory/file functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Directory/file functions */ + /* for P_tmpdir in stdio.h */ #ifndef __USE_XOPEN #define __USE_XOPEN diff --git a/src/core/core-doc.c b/src/core/core-doc.c index 7efae434d..027ab586d 100644 --- a/src/core/core-doc.c +++ b/src/core/core-doc.c @@ -1,6 +1,4 @@ /* - * core-doc.c - documentation generator - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Documentation generator */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-eval.c b/src/core/core-eval.c index b902bc471..001111f25 100644 --- a/src/core/core-eval.c +++ b/src/core/core-eval.c @@ -1,6 +1,4 @@ /* - * core-eval.c - evaluate expressions with references to internal vars - * * SPDX-FileCopyrightText: 2012-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Evaluate expressions with references to internal vars */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-hashtable.c b/src/core/core-hashtable.c index 5c38a8f9e..b1c99a7e4 100644 --- a/src/core/core-hashtable.c +++ b/src/core/core-hashtable.c @@ -1,6 +1,4 @@ /* - * core-hashtable.c - implementation of hashtable - * * SPDX-FileCopyrightText: 2010-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Implementation of hashtable */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-hdata.c b/src/core/core-hdata.c index 637093626..fe39afbce 100644 --- a/src/core/core-hdata.c +++ b/src/core/core-hdata.c @@ -1,6 +1,4 @@ /* - * core-hdata.c - direct access to WeeChat data using hashtables - * * SPDX-FileCopyrightText: 2011-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Direct access to WeeChat data using hashtables */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-hook.c b/src/core/core-hook.c index 6b942293e..d98e7d9ef 100644 --- a/src/core/core-hook.c +++ b/src/core/core-hook.c @@ -1,6 +1,4 @@ /* - * core-hook.c - WeeChat hooks management - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat hooks management */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-infolist.c b/src/core/core-infolist.c index b308ae882..28cab6d76 100644 --- a/src/core/core-infolist.c +++ b/src/core/core-infolist.c @@ -1,6 +1,4 @@ /* - * core-infolist.c - info lists management - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info lists management */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-input.c b/src/core/core-input.c index ba82c637b..a872bdfd6 100644 --- a/src/core/core-input.c +++ b/src/core/core-input.c @@ -1,6 +1,4 @@ /* - * core-input.c - default input callback for buffers - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Default input callback for buffers */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-list.c b/src/core/core-list.c index fe03833a6..f65eca5e3 100644 --- a/src/core/core-list.c +++ b/src/core/core-list.c @@ -1,6 +1,4 @@ /* - * core-list.c - sorted lists - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Sorted lists */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-log.c b/src/core/core-log.c index 693644d14..47c5e5114 100644 --- a/src/core/core-log.c +++ b/src/core/core-log.c @@ -1,6 +1,4 @@ /* - * core-log.c - WeeChat log file (weechat.log) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2006 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat log file (weechat.log) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-network.c b/src/core/core-network.c index c370da7cc..20dfb7faa 100644 --- a/src/core/core-network.c +++ b/src/core/core-network.c @@ -1,6 +1,4 @@ /* - * core-network.c - network functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2010 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2010 Gu1ll4um3r0m41n @@ -24,6 +22,8 @@ * along with WeeChat. If not, see . */ +/* Network functions */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-proxy.c b/src/core/core-proxy.c index c484e33d8..e9cdb51a7 100644 --- a/src/core/core-proxy.c +++ b/src/core/core-proxy.c @@ -1,6 +1,4 @@ /* - * core-proxy.c - proxy functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Proxy functions */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-secure-buffer.c b/src/core/core-secure-buffer.c index a2e3b9d4e..e0d873f8a 100644 --- a/src/core/core-secure-buffer.c +++ b/src/core/core-secure-buffer.c @@ -1,6 +1,4 @@ /* - * core-secure-buffer.c - secured data buffer - * * SPDX-FileCopyrightText: 2013-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Secured data buffer */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-secure-config.c b/src/core/core-secure-config.c index c46463da4..5e3952c57 100644 --- a/src/core/core-secure-config.c +++ b/src/core/core-secure-config.c @@ -1,6 +1,4 @@ /* - * core-secure-config.c - secured data configuration options (file sec.conf) - * * SPDX-FileCopyrightText: 2013-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Secured data configuration options (file sec.conf) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-secure.c b/src/core/core-secure.c index 914925988..e60754152 100644 --- a/src/core/core-secure.c +++ b/src/core/core-secure.c @@ -1,6 +1,4 @@ /* - * core-secure.c - secured data - * * SPDX-FileCopyrightText: 2013-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Secured data */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-signal.c b/src/core/core-signal.c index c682c87c7..e51ea557e 100644 --- a/src/core/core-signal.c +++ b/src/core/core-signal.c @@ -1,6 +1,4 @@ /* - * core-signal.c - signal functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Signal functions */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-string.c b/src/core/core-string.c index f8c714c6d..060ee0a8a 100644 --- a/src/core/core-string.c +++ b/src/core/core-string.c @@ -1,6 +1,4 @@ /* - * core-string.c - string functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* String functions */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-sys.c b/src/core/core-sys.c index 3f272dbec..9b8723e55 100644 --- a/src/core/core-sys.c +++ b/src/core/core-sys.c @@ -1,6 +1,4 @@ /* - * core-sys.c - system actions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* System actions */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-upgrade-file.c b/src/core/core-upgrade-file.c index cbe9f4f06..f7181c891 100644 --- a/src/core/core-upgrade-file.c +++ b/src/core/core-upgrade-file.c @@ -1,6 +1,4 @@ /* - * core-upgrade-file.c - save/restore data for upgrading WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Save/restore data for upgrading WeeChat */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-upgrade.c b/src/core/core-upgrade.c index d23b6634e..8a909384c 100644 --- a/src/core/core-upgrade.c +++ b/src/core/core-upgrade.c @@ -1,6 +1,4 @@ /* - * core-upgrade.c - save/restore session data of WeeChat core - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Save/restore session data of WeeChat core */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-url.c b/src/core/core-url.c index dc7461039..fba1e998c 100644 --- a/src/core/core-url.c +++ b/src/core/core-url.c @@ -1,6 +1,4 @@ /* - * core-url.c - URL transfer - * * SPDX-FileCopyrightText: 2012-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* URL transfer */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-utf8.c b/src/core/core-utf8.c index 3d0f5179c..5c9b5ac5f 100644 --- a/src/core/core-utf8.c +++ b/src/core/core-utf8.c @@ -1,6 +1,4 @@ /* - * core-utf8.c - UTF-8 string functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2006 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* UTF-8 string functions */ + /* for wcwidth in wchar.h */ #define _XOPEN_SOURCE diff --git a/src/core/core-util.c b/src/core/core-util.c index 8d367467f..79cfae973 100644 --- a/src/core/core-util.c +++ b/src/core/core-util.c @@ -1,6 +1,4 @@ /* - * core-util.c - some useful functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Some useful functions */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/core-version.c b/src/core/core-version.c index a46b94454..d98e03ad1 100644 --- a/src/core/core-version.c +++ b/src/core/core-version.c @@ -1,6 +1,4 @@ /* - * core-version.c - functions for WeeChat version - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for WeeChat version */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-command-run.c b/src/core/hook/hook-command-run.c index bc254581d..0b79fe02f 100644 --- a/src/core/hook/hook-command-run.c +++ b/src/core/hook/hook-command-run.c @@ -1,6 +1,4 @@ /* - * hook-command-run.c - WeeChat command_run hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat command_run hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-command.c b/src/core/hook/hook-command.c index 7e14acef7..f0551474c 100644 --- a/src/core/hook/hook-command.c +++ b/src/core/hook/hook-command.c @@ -1,6 +1,4 @@ /* - * hook-command.c - WeeChat command hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat command hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-completion.c b/src/core/hook/hook-completion.c index 9ba786bd5..29f3d9a45 100644 --- a/src/core/hook/hook-completion.c +++ b/src/core/hook/hook-completion.c @@ -1,6 +1,4 @@ /* - * hook-completion.c - WeeChat completion hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat completion hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-config.c b/src/core/hook/hook-config.c index 8125c8a9f..92e501b49 100644 --- a/src/core/hook/hook-config.c +++ b/src/core/hook/hook-config.c @@ -1,6 +1,4 @@ /* - * hook-config.c - WeeChat config hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat config hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-connect.c b/src/core/hook/hook-connect.c index 56d5cb01f..b7acc9f42 100644 --- a/src/core/hook/hook-connect.c +++ b/src/core/hook/hook-connect.c @@ -1,6 +1,4 @@ /* - * hook-connect.c - WeeChat connect hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2012 Simon Arlott * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat connect hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-fd.c b/src/core/hook/hook-fd.c index 8eac0c4e0..aa928ca0d 100644 --- a/src/core/hook/hook-fd.c +++ b/src/core/hook/hook-fd.c @@ -1,6 +1,4 @@ /* - * hook-fd.c - WeeChat fd hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat fd hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-focus.c b/src/core/hook/hook-focus.c index cae1897e5..636f55032 100644 --- a/src/core/hook/hook-focus.c +++ b/src/core/hook/hook-focus.c @@ -1,6 +1,4 @@ /* - * hook-focus.c - WeeChat focus hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat focus hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-hdata.c b/src/core/hook/hook-hdata.c index b80e38fc1..917f5ce20 100644 --- a/src/core/hook/hook-hdata.c +++ b/src/core/hook/hook-hdata.c @@ -1,6 +1,4 @@ /* - * hook-hdata.c - WeeChat hdata hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat hdata hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-hsignal.c b/src/core/hook/hook-hsignal.c index cfe51290d..7603f3905 100644 --- a/src/core/hook/hook-hsignal.c +++ b/src/core/hook/hook-hsignal.c @@ -1,6 +1,4 @@ /* - * hook-hsignal.c - WeeChat hsignal hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat hsignal hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-info-hashtable.c b/src/core/hook/hook-info-hashtable.c index e44460b35..b895b5b7f 100644 --- a/src/core/hook/hook-info-hashtable.c +++ b/src/core/hook/hook-info-hashtable.c @@ -1,6 +1,4 @@ /* - * hook-info-hashtable.c - WeeChat info_hashtable hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat info_hashtable hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-info.c b/src/core/hook/hook-info.c index 2f2667797..0b7aa0400 100644 --- a/src/core/hook/hook-info.c +++ b/src/core/hook/hook-info.c @@ -1,6 +1,4 @@ /* - * hook-info.c - WeeChat info hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat info hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-infolist.c b/src/core/hook/hook-infolist.c index 0fffce025..a9aa86231 100644 --- a/src/core/hook/hook-infolist.c +++ b/src/core/hook/hook-infolist.c @@ -1,6 +1,4 @@ /* - * hook-infolist.c - WeeChat infolist hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat infolist hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-line.c b/src/core/hook/hook-line.c index 57d83d53b..003c4624c 100644 --- a/src/core/hook/hook-line.c +++ b/src/core/hook/hook-line.c @@ -1,6 +1,4 @@ /* - * hook-line.c - WeeChat line hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat line hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-modifier.c b/src/core/hook/hook-modifier.c index aed02d121..e3a7a40c1 100644 --- a/src/core/hook/hook-modifier.c +++ b/src/core/hook/hook-modifier.c @@ -1,6 +1,4 @@ /* - * hook-modifier.c - WeeChat modifier hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat modifier hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-print.c b/src/core/hook/hook-print.c index 13b23c1e2..3e4109db8 100644 --- a/src/core/hook/hook-print.c +++ b/src/core/hook/hook-print.c @@ -1,6 +1,4 @@ /* - * hook-print.c - WeeChat print hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat print hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-process.c b/src/core/hook/hook-process.c index 348017d23..867c27d34 100644 --- a/src/core/hook/hook-process.c +++ b/src/core/hook/hook-process.c @@ -1,6 +1,4 @@ /* - * hook-process.c - WeeChat process hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat process hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-signal.c b/src/core/hook/hook-signal.c index 9954f01e7..2e94448f8 100644 --- a/src/core/hook/hook-signal.c +++ b/src/core/hook/hook-signal.c @@ -1,6 +1,4 @@ /* - * hook-signal.c - WeeChat signal hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat signal hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-timer.c b/src/core/hook/hook-timer.c index c6a0ee9bc..05add6e27 100644 --- a/src/core/hook/hook-timer.c +++ b/src/core/hook/hook-timer.c @@ -1,6 +1,4 @@ /* - * hook-timer.c - WeeChat timer hook - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat timer hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/hook/hook-url.c b/src/core/hook/hook-url.c index 4dd99c78c..9a9bb0a14 100644 --- a/src/core/hook/hook-url.c +++ b/src/core/hook/hook-url.c @@ -1,6 +1,4 @@ /* - * hook-url.c - WeeChat URL hook - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat URL hook */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/core/weechat.c b/src/core/weechat.c index b1e5b341d..3fa239633 100644 --- a/src/core/weechat.c +++ b/src/core/weechat.c @@ -15,8 +15,6 @@ * ## ## * ########################################################################## * - * weechat.c - WeeChat main functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -37,6 +35,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat main functions */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/gui-curses-bar-window.c b/src/gui/curses/gui-curses-bar-window.c index b38a0c37e..1bd4198b0 100644 --- a/src/gui/curses/gui-curses-bar-window.c +++ b/src/gui/curses/gui-curses-bar-window.c @@ -1,6 +1,4 @@ /* - * gui-curses-bar-window.c - bar window functions for Curses GUI - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar window functions for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/gui-curses-chat.c b/src/gui/curses/gui-curses-chat.c index 0f82a57d4..8f3678efd 100644 --- a/src/gui/curses/gui-curses-chat.c +++ b/src/gui/curses/gui-curses-chat.c @@ -1,6 +1,4 @@ /* - * gui-curses-chat.c - chat display functions for Curses GUI - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Chat display functions for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/gui-curses-color.c b/src/gui/curses/gui-curses-color.c index 5b1a5d418..52377a1e5 100644 --- a/src/gui/curses/gui-curses-color.c +++ b/src/gui/curses/gui-curses-color.c @@ -1,6 +1,4 @@ /* - * gui-curses-color.c - color functions for Curses GUI - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Color functions for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/gui-curses-key.c b/src/gui/curses/gui-curses-key.c index 8ba722aec..a3b73a6be 100644 --- a/src/gui/curses/gui-curses-key.c +++ b/src/gui/curses/gui-curses-key.c @@ -1,6 +1,4 @@ /* - * gui-curses-key.c - keyboard functions for Curses GUI - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Keyboard functions for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/gui-curses-main.c b/src/gui/curses/gui-curses-main.c index a1d5bd4dd..04a32f576 100644 --- a/src/gui/curses/gui-curses-main.c +++ b/src/gui/curses/gui-curses-main.c @@ -1,6 +1,4 @@ /* - * gui-curses-main.c - main loop for Curses GUI - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Main loop for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/gui-curses-mouse.c b/src/gui/curses/gui-curses-mouse.c index 42f11dc29..c864f9eee 100644 --- a/src/gui/curses/gui-curses-mouse.c +++ b/src/gui/curses/gui-curses-mouse.c @@ -1,6 +1,4 @@ /* - * gui-curses-mouse.c - mouse functions for Curses GUI - * * SPDX-FileCopyrightText: 2011-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Mouse functions for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/gui-curses-term.c b/src/gui/curses/gui-curses-term.c index 6937e03dd..f36982ac5 100644 --- a/src/gui/curses/gui-curses-term.c +++ b/src/gui/curses/gui-curses-term.c @@ -1,6 +1,4 @@ /* - * gui-curses-term.c - terminal functions for Curses GUI - * * SPDX-FileCopyrightText: 2011-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Terminal functions for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/gui-curses-window.c b/src/gui/curses/gui-curses-window.c index ec082e502..002c2901c 100644 --- a/src/gui/curses/gui-curses-window.c +++ b/src/gui/curses/gui-curses-window.c @@ -1,6 +1,4 @@ /* - * gui-curses-window.c - window display functions for Curses GUI - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Window display functions for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/headless/main.c b/src/gui/curses/headless/main.c index 04b36c11f..37b686a31 100644 --- a/src/gui/curses/headless/main.c +++ b/src/gui/curses/headless/main.c @@ -1,6 +1,4 @@ /* - * main.c - entry point for headless mode (no GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Entry point for headless mode (no GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/curses/headless/ncurses-fake.c b/src/gui/curses/headless/ncurses-fake.c index 56853da61..35f7aa303 100644 --- a/src/gui/curses/headless/ncurses-fake.c +++ b/src/gui/curses/headless/ncurses-fake.c @@ -1,6 +1,4 @@ /* - * ncurses-fake.c - fake ncurses lib (for headless mode and tests) - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Fake ncurses lib (for headless mode and tests) */ + #include "ncurses-fake.h" diff --git a/src/gui/curses/normal/main.c b/src/gui/curses/normal/main.c index c6dc2adbd..3d1d187ed 100644 --- a/src/gui/curses/normal/main.c +++ b/src/gui/curses/normal/main.c @@ -1,6 +1,4 @@ /* - * main.c - entry point for Curses GUI - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Entry point for Curses GUI */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-bar-item-custom.c b/src/gui/gui-bar-item-custom.c index 4b42ba545..c12cd398b 100644 --- a/src/gui/gui-bar-item-custom.c +++ b/src/gui/gui-bar-item-custom.c @@ -1,6 +1,4 @@ /* - * gui-bar-item-custom.c - custom bar item functions (used by all GUI) - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Custom bar item functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-bar-item.c b/src/gui/gui-bar-item.c index bcbdd1c0c..2822d99c0 100644 --- a/src/gui/gui-bar-item.c +++ b/src/gui/gui-bar-item.c @@ -1,6 +1,4 @@ /* - * gui-bar-item.c - bar item functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar item functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-bar-window.c b/src/gui/gui-bar-window.c index f2491da27..c8dd75c9e 100644 --- a/src/gui/gui-bar-window.c +++ b/src/gui/gui-bar-window.c @@ -1,6 +1,4 @@ /* - * gui-bar-window.c - bar window functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar window functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-bar.c b/src/gui/gui-bar.c index ee289a076..c4962b4cb 100644 --- a/src/gui/gui-bar.c +++ b/src/gui/gui-bar.c @@ -1,6 +1,4 @@ /* - * gui-bar.c - bar functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c index 1b6078aa5..356ab1675 100644 --- a/src/gui/gui-buffer.c +++ b/src/gui/gui-buffer.c @@ -1,6 +1,4 @@ /* - * gui-buffer.c - buffer functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Buffer functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-chat.c b/src/gui/gui-chat.c index f6b3614ce..7522efbc5 100644 --- a/src/gui/gui-chat.c +++ b/src/gui/gui-chat.c @@ -1,6 +1,4 @@ /* - * gui-chat.c - chat functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Chat functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-color.c b/src/gui/gui-color.c index d967a5447..ed1a75cd7 100644 --- a/src/gui/gui-color.c +++ b/src/gui/gui-color.c @@ -1,6 +1,4 @@ /* - * gui-color.c - color functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Color functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-completion.c b/src/gui/gui-completion.c index cd8e7886c..7f1b95da5 100644 --- a/src/gui/gui-completion.c +++ b/src/gui/gui-completion.c @@ -1,6 +1,4 @@ /* - * gui-completion.c - word completion according to context (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Word completion according to context (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-cursor.c b/src/gui/gui-cursor.c index 186cecd1c..bdf24c1bb 100644 --- a/src/gui/gui-cursor.c +++ b/src/gui/gui-cursor.c @@ -1,6 +1,4 @@ /* - * gui-cursor.c - functions for free movement of cursor (used by all GUI) - * * SPDX-FileCopyrightText: 2011-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for free movement of cursor (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-filter.c b/src/gui/gui-filter.c index f052c9be0..242e7cd7e 100644 --- a/src/gui/gui-filter.c +++ b/src/gui/gui-filter.c @@ -1,6 +1,4 @@ /* - * gui-filter.c - filter functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Filter functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-focus.c b/src/gui/gui-focus.c index 2e7b10ce1..f13cc7dc7 100644 --- a/src/gui/gui-focus.c +++ b/src/gui/gui-focus.c @@ -1,6 +1,4 @@ /* - * gui-focus.c - functions about focus (cursor mode and mouse) (used by all GUI) - * * SPDX-FileCopyrightText: 2011-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions about focus (cursor mode and mouse) (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-history.c b/src/gui/gui-history.c index a98c7efa9..3b66537ac 100644 --- a/src/gui/gui-history.c +++ b/src/gui/gui-history.c @@ -1,6 +1,4 @@ /* - * gui-history.c - memorize commands or text for buffers (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Memorize commands or text for buffers (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-hotlist.c b/src/gui/gui-hotlist.c index 68f3a0ccf..cdaf76e71 100644 --- a/src/gui/gui-hotlist.c +++ b/src/gui/gui-hotlist.c @@ -1,6 +1,4 @@ /* - * gui-hotlist.c - hotlist management (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Hotlist management (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-input.c b/src/gui/gui-input.c index 5d0825fbe..810dea7b7 100644 --- a/src/gui/gui-input.c +++ b/src/gui/gui-input.c @@ -1,6 +1,4 @@ /* - * gui-input.c - input functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Input functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-key.c b/src/gui/gui-key.c index f4ba9b558..3be4857ff 100644 --- a/src/gui/gui-key.c +++ b/src/gui/gui-key.c @@ -1,6 +1,4 @@ /* - * gui-key.c - keyboard functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Keyboard functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-layout.c b/src/gui/gui-layout.c index 5c9e5e534..f89b9be67 100644 --- a/src/gui/gui-layout.c +++ b/src/gui/gui-layout.c @@ -1,6 +1,4 @@ /* - * gui-layout.c - layout functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Layout functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-line.c b/src/gui/gui-line.c index 5f04cdce9..3760d5ce9 100644 --- a/src/gui/gui-line.c +++ b/src/gui/gui-line.c @@ -1,6 +1,4 @@ /* - * gui-line.c - line functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Line functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-mouse.c b/src/gui/gui-mouse.c index 54d4f89af..ee4653e3d 100644 --- a/src/gui/gui-mouse.c +++ b/src/gui/gui-mouse.c @@ -1,6 +1,4 @@ /* - * gui-mouse.c - functions for mouse (used by all GUI) - * * SPDX-FileCopyrightText: 2011-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for mouse (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-nick.c b/src/gui/gui-nick.c index 0e0ea30e7..411d6ca7b 100644 --- a/src/gui/gui-nick.c +++ b/src/gui/gui-nick.c @@ -1,6 +1,4 @@ /* - * gui-nick.c - nick functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Nick functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-nicklist.c b/src/gui/gui-nicklist.c index bb180434b..4cc09a70d 100644 --- a/src/gui/gui-nicklist.c +++ b/src/gui/gui-nicklist.c @@ -1,6 +1,4 @@ /* - * gui-nicklist.c - nicklist functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Nicklist functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/gui/gui-window.c b/src/gui/gui-window.c index df5cf4ed0..7737ff5df 100644 --- a/src/gui/gui-window.c +++ b/src/gui/gui-window.c @@ -1,6 +1,4 @@ /* - * gui-window.c - window functions (used by all GUI) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Window functions (used by all GUI) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/alias/alias-command.c b/src/plugins/alias/alias-command.c index 0a4574b32..ad443f433 100644 --- a/src/plugins/alias/alias-command.c +++ b/src/plugins/alias/alias-command.c @@ -1,6 +1,4 @@ /* - * alias-command.c - alias commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Alias commands */ + #include #include #include diff --git a/src/plugins/alias/alias-completion.c b/src/plugins/alias/alias-completion.c index 0b8a52ab1..f0ff37b61 100644 --- a/src/plugins/alias/alias-completion.c +++ b/src/plugins/alias/alias-completion.c @@ -1,6 +1,4 @@ /* - * alias-completion.c - completion for alias commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completion for alias commands */ + #include #include #include diff --git a/src/plugins/alias/alias-config.c b/src/plugins/alias/alias-config.c index c2601bf5f..fe575d8ed 100644 --- a/src/plugins/alias/alias-config.c +++ b/src/plugins/alias/alias-config.c @@ -1,6 +1,4 @@ /* - * alias-config.c - alias configuration options (file alias.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Alias configuration options (file alias.conf) */ + #include #include #include diff --git a/src/plugins/alias/alias-info.c b/src/plugins/alias/alias-info.c index 87a674b41..54da1195d 100644 --- a/src/plugins/alias/alias-info.c +++ b/src/plugins/alias/alias-info.c @@ -1,6 +1,4 @@ /* - * alias-info.c - info and infolist hooks for alias plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info and infolist hooks for alias plugin */ + #include #include "../weechat-plugin.h" diff --git a/src/plugins/alias/alias.c b/src/plugins/alias/alias.c index 8b7d0d6c3..6ded0d121 100644 --- a/src/plugins/alias/alias.c +++ b/src/plugins/alias/alias.c @@ -1,6 +1,4 @@ /* - * alias.c - alias plugin for WeeChat: command aliases - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Alias plugin for WeeChat: command aliases */ + #include #include #include diff --git a/src/plugins/buflist/buflist-bar-item.c b/src/plugins/buflist/buflist-bar-item.c index ba0b1fe4e..a9fa9dbe8 100644 --- a/src/plugins/buflist/buflist-bar-item.c +++ b/src/plugins/buflist/buflist-bar-item.c @@ -1,6 +1,4 @@ /* - * buflist-bar-item.c - bar item for buflist plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar item for buflist plugin */ + #include #include #include diff --git a/src/plugins/buflist/buflist-command.c b/src/plugins/buflist/buflist-command.c index 66248ba3a..0d501be2c 100644 --- a/src/plugins/buflist/buflist-command.c +++ b/src/plugins/buflist/buflist-command.c @@ -1,6 +1,4 @@ /* - * buflist-command.c - buflist command - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Buflist command */ + #include #include "../weechat-plugin.h" diff --git a/src/plugins/buflist/buflist-completion.c b/src/plugins/buflist/buflist-completion.c index af5d2e09b..c9820a24c 100644 --- a/src/plugins/buflist/buflist-completion.c +++ b/src/plugins/buflist/buflist-completion.c @@ -1,6 +1,4 @@ /* - * buflist-completion.c - completion for buflist command - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completion for buflist command */ + #include #include "../weechat-plugin.h" diff --git a/src/plugins/buflist/buflist-config.c b/src/plugins/buflist/buflist-config.c index c18e452cb..d6943f5d1 100644 --- a/src/plugins/buflist/buflist-config.c +++ b/src/plugins/buflist/buflist-config.c @@ -1,6 +1,4 @@ /* - * buflist-config.c - buflist configuration options (file buflist.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Buflist configuration options (file buflist.conf) */ + #include #include #include diff --git a/src/plugins/buflist/buflist-info.c b/src/plugins/buflist/buflist-info.c index e5e057896..a3a808c4b 100644 --- a/src/plugins/buflist/buflist-info.c +++ b/src/plugins/buflist/buflist-info.c @@ -1,6 +1,4 @@ /* - * buflist-info.c - infolist hook for buflist plugin - * * SPDX-FileCopyrightText: 2019 Simmo Saan * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Infolist hook for buflist plugin */ + #include "../weechat-plugin.h" #include "buflist.h" #include "buflist-bar-item.h" diff --git a/src/plugins/buflist/buflist-mouse.c b/src/plugins/buflist/buflist-mouse.c index 308d324ab..899fda0b5 100644 --- a/src/plugins/buflist/buflist-mouse.c +++ b/src/plugins/buflist/buflist-mouse.c @@ -1,6 +1,4 @@ /* - * buflist-mouse.c - mouse actions for buflist - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Mouse actions for buflist */ + #include #include #include diff --git a/src/plugins/buflist/buflist.c b/src/plugins/buflist/buflist.c index de238ba28..b446b533f 100644 --- a/src/plugins/buflist/buflist.c +++ b/src/plugins/buflist/buflist.c @@ -1,6 +1,4 @@ /* - * buflist.c - Bar with list of buffers - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar with list of buffers */ + #include #include #include diff --git a/src/plugins/charset/charset.c b/src/plugins/charset/charset.c index 90495d242..48f7266a8 100644 --- a/src/plugins/charset/charset.c +++ b/src/plugins/charset/charset.c @@ -1,6 +1,4 @@ /* - * charset.c - charset plugin for WeeChat: encode/decode strings - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Charset plugin for WeeChat: encode/decode strings */ + #include #include #ifndef __USE_GNU diff --git a/src/plugins/exec/exec-buffer.c b/src/plugins/exec/exec-buffer.c index 64511ffcf..374aef536 100644 --- a/src/plugins/exec/exec-buffer.c +++ b/src/plugins/exec/exec-buffer.c @@ -1,6 +1,4 @@ /* - * exec-buffer.c - buffers with output of commands - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Buffers with output of commands */ + #include #include #include diff --git a/src/plugins/exec/exec-command.c b/src/plugins/exec/exec-command.c index b503e5efa..d0b4de20f 100644 --- a/src/plugins/exec/exec-command.c +++ b/src/plugins/exec/exec-command.c @@ -1,6 +1,4 @@ /* - * exec-command.c - exec command - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Exec command */ + #include #include #include diff --git a/src/plugins/exec/exec-completion.c b/src/plugins/exec/exec-completion.c index 7561c3fe9..e7a6a8882 100644 --- a/src/plugins/exec/exec-completion.c +++ b/src/plugins/exec/exec-completion.c @@ -1,6 +1,4 @@ /* - * exec-completion.c - completion for exec commands - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completion for exec commands */ + #include #include #include diff --git a/src/plugins/exec/exec-config.c b/src/plugins/exec/exec-config.c index 7127316dd..d7bbb0e0e 100644 --- a/src/plugins/exec/exec-config.c +++ b/src/plugins/exec/exec-config.c @@ -1,6 +1,4 @@ /* - * exec-config.c - exec configuration options (file exec.conf) - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Exec configuration options (file exec.conf) */ + #include #include #include diff --git a/src/plugins/exec/exec.c b/src/plugins/exec/exec.c index 87b7b28c9..47423d2d9 100644 --- a/src/plugins/exec/exec.c +++ b/src/plugins/exec/exec.c @@ -1,6 +1,4 @@ /* - * exec.c - execution of external commands in WeeChat - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Execution of external commands in WeeChat */ + #include #include #include diff --git a/src/plugins/fifo/fifo-command.c b/src/plugins/fifo/fifo-command.c index d566e6699..eb1d1ed8b 100644 --- a/src/plugins/fifo/fifo-command.c +++ b/src/plugins/fifo/fifo-command.c @@ -1,6 +1,4 @@ /* - * fifo-command.c - fifo command - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Fifo command */ + #include #include "../weechat-plugin.h" diff --git a/src/plugins/fifo/fifo-config.c b/src/plugins/fifo/fifo-config.c index 84f723a2d..71e3af91b 100644 --- a/src/plugins/fifo/fifo-config.c +++ b/src/plugins/fifo/fifo-config.c @@ -1,6 +1,4 @@ /* - * fifo-config.c - fifo configuration options (file fifo.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Fifo configuration options (file fifo.conf) */ + #include #include "../weechat-plugin.h" diff --git a/src/plugins/fifo/fifo-info.c b/src/plugins/fifo/fifo-info.c index cd94d7900..b229b1ad0 100644 --- a/src/plugins/fifo/fifo-info.c +++ b/src/plugins/fifo/fifo-info.c @@ -1,6 +1,4 @@ /* - * fifo-info.c - info and infolist hooks for fifo plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info and infolist hooks for fifo plugin */ + #include #include diff --git a/src/plugins/fifo/fifo.c b/src/plugins/fifo/fifo.c index c59779849..83d1733ad 100644 --- a/src/plugins/fifo/fifo.c +++ b/src/plugins/fifo/fifo.c @@ -1,6 +1,4 @@ /* - * fifo.c - fifo plugin for WeeChat: remote control with FIFO pipe - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Fifo plugin for WeeChat: remote control with FIFO pipe */ + #include #include #include diff --git a/src/plugins/fset/fset-bar-item.c b/src/plugins/fset/fset-bar-item.c index dbeceb1a3..f740665e5 100644 --- a/src/plugins/fset/fset-bar-item.c +++ b/src/plugins/fset/fset-bar-item.c @@ -1,6 +1,4 @@ /* - * fset-bar-item.c - bar item for Fast Set plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar item for Fast Set plugin */ + #include #include #include diff --git a/src/plugins/fset/fset-buffer.c b/src/plugins/fset/fset-buffer.c index d80b7a85a..69fa6b8cc 100644 --- a/src/plugins/fset/fset-buffer.c +++ b/src/plugins/fset/fset-buffer.c @@ -1,6 +1,4 @@ /* - * fset-buffer.c - buffer for Fast Set plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Buffer for Fast Set plugin */ + #include #include #include diff --git a/src/plugins/fset/fset-command.c b/src/plugins/fset/fset-command.c index 4f420b2ba..5c7632b7c 100644 --- a/src/plugins/fset/fset-command.c +++ b/src/plugins/fset/fset-command.c @@ -1,6 +1,4 @@ /* - * fset-command.c - Fast Set command - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Fast Set command */ + #include #include #include diff --git a/src/plugins/fset/fset-completion.c b/src/plugins/fset/fset-completion.c index 8202b8780..4e4f11ba8 100644 --- a/src/plugins/fset/fset-completion.c +++ b/src/plugins/fset/fset-completion.c @@ -1,6 +1,4 @@ /* - * fset-completion.c - completion for Fast Set commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completion for Fast Set commands */ + #include #include "../weechat-plugin.h" diff --git a/src/plugins/fset/fset-config.c b/src/plugins/fset/fset-config.c index 5111e31f3..2103e1685 100644 --- a/src/plugins/fset/fset-config.c +++ b/src/plugins/fset/fset-config.c @@ -1,6 +1,4 @@ /* - * fset-config.c - Fast Set configuration options (file fset.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Fast Set configuration options (file fset.conf) */ + #include #include diff --git a/src/plugins/fset/fset-info.c b/src/plugins/fset/fset-info.c index 9887880e1..3f39a97b1 100644 --- a/src/plugins/fset/fset-info.c +++ b/src/plugins/fset/fset-info.c @@ -1,6 +1,4 @@ /* - * fset-info.c - info, infolist and hdata hooks for Fast Set plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info, infolist and hdata hooks for Fast Set plugin */ + #include #include #include diff --git a/src/plugins/fset/fset-mouse.c b/src/plugins/fset/fset-mouse.c index 7722b25ec..b52d70f5f 100644 --- a/src/plugins/fset/fset-mouse.c +++ b/src/plugins/fset/fset-mouse.c @@ -1,6 +1,4 @@ /* - * fset-mouse.c - mouse actions for Fast Set plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Mouse actions for Fast Set plugin */ + #include #include #include diff --git a/src/plugins/fset/fset-option.c b/src/plugins/fset/fset-option.c index 10d8723f2..203cd0ab2 100644 --- a/src/plugins/fset/fset-option.c +++ b/src/plugins/fset/fset-option.c @@ -1,6 +1,4 @@ /* - * fset-option.c - manage options displayed by Fast Set buffer - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Manage options displayed by Fast Set buffer */ + #include #include #include diff --git a/src/plugins/fset/fset.c b/src/plugins/fset/fset.c index bea0eb064..271af22fd 100644 --- a/src/plugins/fset/fset.c +++ b/src/plugins/fset/fset.c @@ -1,6 +1,4 @@ /* - * fset.c - Fast set of WeeChat and plugins options - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Fast set of WeeChat and plugins options */ + #include #include #include diff --git a/src/plugins/guile/weechat-guile-api.c b/src/plugins/guile/weechat-guile-api.c index 724f4b8ce..a8ca83c46 100644 --- a/src/plugins/guile/weechat-guile-api.c +++ b/src/plugins/guile/weechat-guile-api.c @@ -1,6 +1,4 @@ /* - * weechat-guile-api.c - guile API functions - * * SPDX-FileCopyrightText: 2011-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2012 Simon Arlott * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Guile API functions */ + #undef _ #include diff --git a/src/plugins/guile/weechat-guile.c b/src/plugins/guile/weechat-guile.c index d542f610f..a5261b88d 100644 --- a/src/plugins/guile/weechat-guile.c +++ b/src/plugins/guile/weechat-guile.c @@ -1,6 +1,4 @@ /* - * weechat-guile.c - guile (scheme) plugin for WeeChat - * * SPDX-FileCopyrightText: 2011-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Guile (scheme) plugin for WeeChat */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/irc/irc-bar-item.c b/src/plugins/irc/irc-bar-item.c index 7f93d4582..11127aa5b 100644 --- a/src/plugins/irc/irc-bar-item.c +++ b/src/plugins/irc/irc-bar-item.c @@ -1,6 +1,4 @@ /* - * irc-bar-item.c - bar items for IRC plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar items for IRC plugin */ + #include #include #include diff --git a/src/plugins/irc/irc-batch.c b/src/plugins/irc/irc-batch.c index 8b5373963..1ddaa0618 100644 --- a/src/plugins/irc/irc-batch.c +++ b/src/plugins/irc/irc-batch.c @@ -1,6 +1,4 @@ /* - * irc-batch.c - functions for managing batched events - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for managing batched events */ + #include #include #include diff --git a/src/plugins/irc/irc-buffer.c b/src/plugins/irc/irc-buffer.c index 4a4912031..bdd4e3f9c 100644 --- a/src/plugins/irc/irc-buffer.c +++ b/src/plugins/irc/irc-buffer.c @@ -1,6 +1,4 @@ /* - * irc-buffer.c - buffer functions for IRC plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Buffer functions for IRC plugin */ + #include #include #include diff --git a/src/plugins/irc/irc-channel.c b/src/plugins/irc/irc-channel.c index 357696b27..d7d27781b 100644 --- a/src/plugins/irc/irc-channel.c +++ b/src/plugins/irc/irc-channel.c @@ -1,6 +1,4 @@ /* - * irc-channel.c - channel and private chat management for IRC plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Channel and private chat management for IRC plugin */ + #include #include #include diff --git a/src/plugins/irc/irc-color.c b/src/plugins/irc/irc-color.c index 2db3dd456..b8b1e07bd 100644 --- a/src/plugins/irc/irc-color.c +++ b/src/plugins/irc/irc-color.c @@ -1,6 +1,4 @@ /* - * irc-color.c - IRC color decoding/encoding in messages - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* IRC color decoding/encoding in messages */ + #include #include #include diff --git a/src/plugins/irc/irc-command.c b/src/plugins/irc/irc-command.c index 23a176e78..e0628191f 100644 --- a/src/plugins/irc/irc-command.c +++ b/src/plugins/irc/irc-command.c @@ -1,6 +1,4 @@ /* - * irc-command.c - IRC commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2006 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* IRC commands */ + #include #include #include diff --git a/src/plugins/irc/irc-completion.c b/src/plugins/irc/irc-completion.c index 60e6d84a9..a76c0ebed 100644 --- a/src/plugins/irc/irc-completion.c +++ b/src/plugins/irc/irc-completion.c @@ -1,6 +1,4 @@ /* - * irc-completion.c - completion for IRC commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completion for IRC commands */ + #include #include #include diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index 6f84c1141..16c52161a 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -1,6 +1,4 @@ /* - * irc-config.c - IRC configuration options (file irc.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* IRC configuration options (file irc.conf) */ + #include #include #include diff --git a/src/plugins/irc/irc-ctcp.c b/src/plugins/irc/irc-ctcp.c index 80612df73..152dae8e6 100644 --- a/src/plugins/irc/irc-ctcp.c +++ b/src/plugins/irc/irc-ctcp.c @@ -1,6 +1,4 @@ /* - * irc-ctcp.c - IRC CTCP protocol - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* IRC CTCP protocol */ + #include #include #include diff --git a/src/plugins/irc/irc-debug.c b/src/plugins/irc/irc-debug.c index 6445957fe..ef3616bb5 100644 --- a/src/plugins/irc/irc-debug.c +++ b/src/plugins/irc/irc-debug.c @@ -1,6 +1,4 @@ /* - * irc-debug.c - debug functions for IRC plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Debug functions for IRC plugin */ + #include #include diff --git a/src/plugins/irc/irc-ignore.c b/src/plugins/irc/irc-ignore.c index b2ec1110a..79dd4b419 100644 --- a/src/plugins/irc/irc-ignore.c +++ b/src/plugins/irc/irc-ignore.c @@ -1,6 +1,4 @@ /* - * irc-ignore.c - ignore (nicks/hosts) management for IRC plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Ignore (nicks/hosts) management for IRC plugin */ + #include #include #include diff --git a/src/plugins/irc/irc-info.c b/src/plugins/irc/irc-info.c index 1ca26d962..25d8cb33e 100644 --- a/src/plugins/irc/irc-info.c +++ b/src/plugins/irc/irc-info.c @@ -1,6 +1,4 @@ /* - * irc-info.c - info, infolist and hdata hooks for IRC plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info, infolist and hdata hooks for IRC plugin */ + #include #include #include diff --git a/src/plugins/irc/irc-input.c b/src/plugins/irc/irc-input.c index 84bb5ea63..b3ebb7378 100644 --- a/src/plugins/irc/irc-input.c +++ b/src/plugins/irc/irc-input.c @@ -1,6 +1,4 @@ /* - * irc-input.c - input data management for IRC buffers - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Input data management for IRC buffers */ + #include #include #include diff --git a/src/plugins/irc/irc-join.c b/src/plugins/irc/irc-join.c index 8135ce91a..8ff82398b 100644 --- a/src/plugins/irc/irc-join.c +++ b/src/plugins/irc/irc-join.c @@ -1,6 +1,4 @@ /* - * irc-join.c - functions for list of channels to join - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for list of channels to join */ + #include #include #include diff --git a/src/plugins/irc/irc-list.c b/src/plugins/irc/irc-list.c index 96ed8822c..a4c7f3b9f 100644 --- a/src/plugins/irc/irc-list.c +++ b/src/plugins/irc/irc-list.c @@ -1,6 +1,4 @@ /* - * irc-list.c - functions for IRC list buffer - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for IRC list buffer */ + #include #include #include diff --git a/src/plugins/irc/irc-message.c b/src/plugins/irc/irc-message.c index 86af89470..9f80dc451 100644 --- a/src/plugins/irc/irc-message.c +++ b/src/plugins/irc/irc-message.c @@ -1,6 +1,4 @@ /* - * irc-message.c - functions for IRC messages - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for IRC messages */ + #include #include #include diff --git a/src/plugins/irc/irc-mode.c b/src/plugins/irc/irc-mode.c index b6ff93094..dfc93e5b9 100644 --- a/src/plugins/irc/irc-mode.c +++ b/src/plugins/irc/irc-mode.c @@ -1,6 +1,4 @@ /* - * irc-mode.c - IRC channel/user modes management - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* IRC channel/user modes management */ + #include #include #include diff --git a/src/plugins/irc/irc-modelist.c b/src/plugins/irc/irc-modelist.c index e7e4406d9..adddd1f2c 100644 --- a/src/plugins/irc/irc-modelist.c +++ b/src/plugins/irc/irc-modelist.c @@ -1,6 +1,4 @@ /* - * irc-modelist.c - channel mode list management for IRC plugin - * * SPDX-FileCopyrightText: 2015 Simmo Saan * SPDX-FileCopyrightText: 2018-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Channel mode list management for IRC plugin */ + #include #include #include diff --git a/src/plugins/irc/irc-msgbuffer.c b/src/plugins/irc/irc-msgbuffer.c index 82cc87ab0..5bed5a266 100644 --- a/src/plugins/irc/irc-msgbuffer.c +++ b/src/plugins/irc/irc-msgbuffer.c @@ -1,6 +1,4 @@ /* - * irc-msgbuffer.c - target buffer for IRC messages - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Target buffer for IRC messages */ + #include #include #include diff --git a/src/plugins/irc/irc-nick.c b/src/plugins/irc/irc-nick.c index e3588852e..514715bf4 100644 --- a/src/plugins/irc/irc-nick.c +++ b/src/plugins/irc/irc-nick.c @@ -1,6 +1,4 @@ /* - * irc-nick.c - nick management for IRC plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Nick management for IRC plugin */ + #include #include #include diff --git a/src/plugins/irc/irc-notify.c b/src/plugins/irc/irc-notify.c index 7838c30ab..ffcd8c8cc 100644 --- a/src/plugins/irc/irc-notify.c +++ b/src/plugins/irc/irc-notify.c @@ -1,6 +1,4 @@ /* - * irc-notify.c - notify lists for IRC plugin - * * SPDX-FileCopyrightText: 2010-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Notify lists for IRC plugin */ + #include #include #include diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c index 677d15241..301b6619b 100644 --- a/src/plugins/irc/irc-protocol.c +++ b/src/plugins/irc/irc-protocol.c @@ -1,6 +1,4 @@ /* - * irc-protocol.c - implementation of IRC protocol - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2006 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2014 Shawn Smith @@ -23,6 +21,8 @@ * along with WeeChat. If not, see . */ +/* Implementation of IRC protocol */ + /* this define is needed for strptime() (not on OpenBSD/Sun) */ #if !defined(__OpenBSD__) && !defined(__sun) #define _XOPEN_SOURCE 700 diff --git a/src/plugins/irc/irc-raw.c b/src/plugins/irc/irc-raw.c index 71eccfabb..95d9cde6d 100644 --- a/src/plugins/irc/irc-raw.c +++ b/src/plugins/irc/irc-raw.c @@ -1,6 +1,4 @@ /* - * irc-raw.c - functions for IRC raw data messages - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for IRC raw data messages */ + #include #include #include diff --git a/src/plugins/irc/irc-redirect.c b/src/plugins/irc/irc-redirect.c index 15a3d681c..ccc237c09 100644 --- a/src/plugins/irc/irc-redirect.c +++ b/src/plugins/irc/irc-redirect.c @@ -1,6 +1,4 @@ /* - * irc-redirect.c - redirection of IRC command output - * * SPDX-FileCopyrightText: 2010-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Redirection of IRC command output */ + #include #include #include diff --git a/src/plugins/irc/irc-sasl.c b/src/plugins/irc/irc-sasl.c index c600833d3..f402f4884 100644 --- a/src/plugins/irc/irc-sasl.c +++ b/src/plugins/irc/irc-sasl.c @@ -1,6 +1,4 @@ /* - * irc-sasl.c - SASL authentication with IRC server - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* SASL authentication with IRC server */ + #include #include #include diff --git a/src/plugins/irc/irc-server.c b/src/plugins/irc/irc-server.c index b723e961b..5d8e4bbc1 100644 --- a/src/plugins/irc/irc-server.c +++ b/src/plugins/irc/irc-server.c @@ -1,6 +1,4 @@ /* - * irc-server.c - I/O communication with IRC servers - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2010 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2012 Simon Arlott @@ -23,6 +21,8 @@ * along with WeeChat. If not, see . */ +/* I/O communication with IRC servers */ + #include #include #include diff --git a/src/plugins/irc/irc-tag.c b/src/plugins/irc/irc-tag.c index 0af81c815..44dc803b6 100644 --- a/src/plugins/irc/irc-tag.c +++ b/src/plugins/irc/irc-tag.c @@ -1,6 +1,4 @@ /* - * irc-tag.c - functions for IRC message tags - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for IRC message tags */ + #include #include #include diff --git a/src/plugins/irc/irc-typing.c b/src/plugins/irc/irc-typing.c index b0fd9e754..3ee2564e8 100644 --- a/src/plugins/irc/irc-typing.c +++ b/src/plugins/irc/irc-typing.c @@ -1,6 +1,4 @@ /* - * irc-typing.c - manage typing status on channels/private - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Manage typing status on channels/private */ + #include #include #include diff --git a/src/plugins/irc/irc-upgrade.c b/src/plugins/irc/irc-upgrade.c index 333266d2c..e581f5c8f 100644 --- a/src/plugins/irc/irc-upgrade.c +++ b/src/plugins/irc/irc-upgrade.c @@ -1,6 +1,4 @@ /* - * irc-upgrade.c - save/restore IRC plugin data when upgrading WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Save/restore IRC plugin data when upgrading WeeChat */ + #include #include #include diff --git a/src/plugins/irc/irc.c b/src/plugins/irc/irc.c index 89854677e..bcef2e1a4 100644 --- a/src/plugins/irc/irc.c +++ b/src/plugins/irc/irc.c @@ -1,6 +1,4 @@ /* - * irc.c - IRC (Internet Relay Chat) plugin for WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* IRC (Internet Relay Chat) plugin for WeeChat */ + #include #include #include diff --git a/src/plugins/javascript/weechat-js-api.cpp b/src/plugins/javascript/weechat-js-api.cpp index 8f3cfcd79..c24b14b81 100644 --- a/src/plugins/javascript/weechat-js-api.cpp +++ b/src/plugins/javascript/weechat-js-api.cpp @@ -1,6 +1,4 @@ /* - * weechat-js-api.cpp - javascript API functions - * * SPDX-FileCopyrightText: 2013 Koka El Kiwi * SPDX-FileCopyrightText: 2015-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* JavaScript API functions */ + #undef _ #include diff --git a/src/plugins/javascript/weechat-js-v8.cpp b/src/plugins/javascript/weechat-js-v8.cpp index 0261df44f..7812f567c 100644 --- a/src/plugins/javascript/weechat-js-v8.cpp +++ b/src/plugins/javascript/weechat-js-v8.cpp @@ -1,6 +1,4 @@ /* - * weechat-js-v8.cpp - v8 javascript functions - * * SPDX-FileCopyrightText: 2013 Koka El Kiwi * SPDX-FileCopyrightText: 2015-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* V8 JavaScript functions */ + #undef _ #include diff --git a/src/plugins/javascript/weechat-js.cpp b/src/plugins/javascript/weechat-js.cpp index 45988982f..542f7f4d8 100644 --- a/src/plugins/javascript/weechat-js.cpp +++ b/src/plugins/javascript/weechat-js.cpp @@ -1,6 +1,4 @@ /* - * weechat-js.cpp - javascript plugin for WeeChat - * * SPDX-FileCopyrightText: 2013 Koka El Kiwi * SPDX-FileCopyrightText: 2015-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* JavaScript plugin for WeeChat */ + #include #include #include diff --git a/src/plugins/logger/logger-backlog.c b/src/plugins/logger/logger-backlog.c index 75be06994..a0503606c 100644 --- a/src/plugins/logger/logger-backlog.c +++ b/src/plugins/logger/logger-backlog.c @@ -1,6 +1,4 @@ /* - * logger-backlog.c - display backlog of messages - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Display backlog of messages */ + /* this define is needed for strptime() (not on OpenBSD/Sun) */ #if !defined(__OpenBSD__) && !defined(__sun) #define _XOPEN_SOURCE 700 diff --git a/src/plugins/logger/logger-buffer.c b/src/plugins/logger/logger-buffer.c index f743dc8ad..0d55e6174 100644 --- a/src/plugins/logger/logger-buffer.c +++ b/src/plugins/logger/logger-buffer.c @@ -1,6 +1,4 @@ /* - * logger-buffer.c - logger buffer list management - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Logger buffer list management */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/logger/logger-command.c b/src/plugins/logger/logger-command.c index c072399e3..e3d5c143c 100644 --- a/src/plugins/logger/logger-command.c +++ b/src/plugins/logger/logger-command.c @@ -1,6 +1,4 @@ /* - * logger-command.c - logger commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Logger commands */ + #include #include diff --git a/src/plugins/logger/logger-config.c b/src/plugins/logger/logger-config.c index 51bad6a16..7140257ce 100644 --- a/src/plugins/logger/logger-config.c +++ b/src/plugins/logger/logger-config.c @@ -1,6 +1,4 @@ /* - * logger-config.c - logger configuration options (file logger.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Logger configuration options (file logger.conf) */ + #include #include #include diff --git a/src/plugins/logger/logger-info.c b/src/plugins/logger/logger-info.c index 0a39047d0..d70c34459 100644 --- a/src/plugins/logger/logger-info.c +++ b/src/plugins/logger/logger-info.c @@ -1,6 +1,4 @@ /* - * logger-info.c - info and infolist hooks for logger plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info and infolist hooks for logger plugin */ + #include #include #include diff --git a/src/plugins/logger/logger-tail.c b/src/plugins/logger/logger-tail.c index 776b84b6f..2040f236e 100644 --- a/src/plugins/logger/logger-tail.c +++ b/src/plugins/logger/logger-tail.c @@ -1,6 +1,4 @@ /* - * logger-tail.c - return last lines of a file - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Return last lines of a file */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/logger/logger.c b/src/plugins/logger/logger.c index 1b43a349b..8671c8cb1 100644 --- a/src/plugins/logger/logger.c +++ b/src/plugins/logger/logger.c @@ -1,6 +1,4 @@ /* - * logger.c - logger plugin for WeeChat: save buffer lines to disk files - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Logger plugin for WeeChat: save buffer lines to disk files */ + #include #include #include diff --git a/src/plugins/lua/weechat-lua-api.c b/src/plugins/lua/weechat-lua-api.c index 1cd36bdf5..27dad6d1d 100644 --- a/src/plugins/lua/weechat-lua-api.c +++ b/src/plugins/lua/weechat-lua-api.c @@ -1,6 +1,4 @@ /* - * weechat-lua-api.c - lua API functions - * * SPDX-FileCopyrightText: 2006-2007 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2006-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2012 Simon Arlott @@ -23,6 +21,8 @@ * along with WeeChat. If not, see . */ +/* Lua API functions */ + #undef _ #include diff --git a/src/plugins/lua/weechat-lua.c b/src/plugins/lua/weechat-lua.c index dd1766664..5dd7c737d 100644 --- a/src/plugins/lua/weechat-lua.c +++ b/src/plugins/lua/weechat-lua.c @@ -1,6 +1,4 @@ /* - * weechat-lua.c - lua plugin for WeeChat - * * SPDX-FileCopyrightText: 2006-2007 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2006-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Lua plugin for WeeChat */ + #undef _ #include diff --git a/src/plugins/perl/weechat-perl-api.c b/src/plugins/perl/weechat-perl-api.c index 916c568f8..9fa6ffa9e 100644 --- a/src/plugins/perl/weechat-perl-api.c +++ b/src/plugins/perl/weechat-perl-api.c @@ -1,6 +1,4 @@ /* - * weechat-perl-api.c - perl API functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2008 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2012 Simon Arlott @@ -23,6 +21,8 @@ * along with WeeChat. If not, see . */ +/* Perl API functions */ + #undef _ #include diff --git a/src/plugins/perl/weechat-perl.c b/src/plugins/perl/weechat-perl.c index 9a00a7a85..3c171250b 100644 --- a/src/plugins/perl/weechat-perl.c +++ b/src/plugins/perl/weechat-perl.c @@ -1,6 +1,4 @@ /* - * weechat-perl.c - perl plugin for WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2008 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Perl plugin for WeeChat */ + #undef _ #include diff --git a/src/plugins/php/weechat-php-api.c b/src/plugins/php/weechat-php-api.c index 5755bd9e0..0eb016c64 100644 --- a/src/plugins/php/weechat-php-api.c +++ b/src/plugins/php/weechat-php-api.c @@ -1,6 +1,4 @@ /* - * weechat-php-api.c - PHP API functions - * * SPDX-FileCopyrightText: 2006-2017 Adam Saponara * SPDX-FileCopyrightText: 2017-2025 Sébastien Helleu * @@ -35,6 +33,8 @@ * as that of the covered work. */ +/* PHP API functions */ + #include #include #include diff --git a/src/plugins/php/weechat-php.c b/src/plugins/php/weechat-php.c index f1f3a8ff7..9fbd1d339 100644 --- a/src/plugins/php/weechat-php.c +++ b/src/plugins/php/weechat-php.c @@ -1,6 +1,4 @@ /* - * weechat-php.c - PHP plugin for WeeChat - * * SPDX-FileCopyrightText: 2006-2017 Adam Saponara * SPDX-FileCopyrightText: 2017-2025 Sébastien Helleu * @@ -35,6 +33,8 @@ * as that of the covered work. */ +/* PHP plugin for WeeChat */ + #include #include #include diff --git a/src/plugins/plugin-api-info.c b/src/plugins/plugin-api-info.c index 86cb9daf0..48e3660ea 100644 --- a/src/plugins/plugin-api-info.c +++ b/src/plugins/plugin-api-info.c @@ -1,6 +1,4 @@ /* - * plugin-api-info.c - extra info functions for plugin API - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Extra info functions for plugin API */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/plugin-api.c b/src/plugins/plugin-api.c index cd505aed5..822e5e566 100644 --- a/src/plugins/plugin-api.c +++ b/src/plugins/plugin-api.c @@ -1,6 +1,4 @@ /* - * plugin-api.c - extra functions for plugin API - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Extra functions for plugin API */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/plugin-config.c b/src/plugins/plugin-config.c index 2c9ff5572..83e83f6d1 100644 --- a/src/plugins/plugin-config.c +++ b/src/plugins/plugin-config.c @@ -1,6 +1,4 @@ /* - * plugin-config.c - plugin configuration options (file plugins.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Plugin configuration options (file plugins.conf) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/plugin-script-api.c b/src/plugins/plugin-script-api.c index 6b4ce9e9a..4498fc118 100644 --- a/src/plugins/plugin-script-api.c +++ b/src/plugins/plugin-script-api.c @@ -1,6 +1,4 @@ /* - * script-api.c - script API functions, used by script plugins - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2012 Simon Arlott * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Script API functions, used by script plugins */ + #include #include #include diff --git a/src/plugins/plugin-script-config.c b/src/plugins/plugin-script-config.c index 6f5411669..eef7b0a61 100644 --- a/src/plugins/plugin-script-config.c +++ b/src/plugins/plugin-script-config.c @@ -1,6 +1,4 @@ /* - * plugin-script-config.c - configuration options, used by script plugins - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Configuration options, used by script plugins */ + #include #include diff --git a/src/plugins/plugin-script.c b/src/plugins/plugin-script.c index c1b212597..533d17428 100644 --- a/src/plugins/plugin-script.c +++ b/src/plugins/plugin-script.c @@ -1,6 +1,4 @@ /* - * plugin-script.c - common functions used by script plugins - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Common functions used by script plugins */ + #include #include #include diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index fa507ff77..ccde523b5 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -1,6 +1,4 @@ /* - * plugin.c - WeeChat plugins management (load/unload dynamic C libraries) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat plugins management (load/unload dynamic C libraries) */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/python/weechat-python-api.c b/src/plugins/python/weechat-python-api.c index 70337f299..3f1e35c47 100644 --- a/src/plugins/python/weechat-python-api.c +++ b/src/plugins/python/weechat-python-api.c @@ -1,6 +1,4 @@ /* - * weechat-python-api.c - python API functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2007 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2012 Simon Arlott @@ -23,6 +21,8 @@ * along with WeeChat. If not, see . */ +/* Python API functions */ + #undef _ #include diff --git a/src/plugins/python/weechat-python.c b/src/plugins/python/weechat-python.c index 5b002551c..9f5587fa8 100644 --- a/src/plugins/python/weechat-python.c +++ b/src/plugins/python/weechat-python.c @@ -1,6 +1,4 @@ /* - * weechat-python.c - python plugin for WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2007 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2012 Simon Arlott @@ -23,6 +21,8 @@ * along with WeeChat. If not, see . */ +/* Python plugin for WeeChat */ + #undef _ #include diff --git a/src/plugins/relay/api/relay-api-msg.c b/src/plugins/relay/api/relay-api-msg.c index 4b1ff2fdc..507fc1a12 100644 --- a/src/plugins/relay/api/relay-api-msg.c +++ b/src/plugins/relay/api/relay-api-msg.c @@ -1,6 +1,4 @@ /* - * relay-api-msg.c - build JSON messages for "api" protocol - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Build JSON messages for "api" protocol */ + #include #include #include diff --git a/src/plugins/relay/api/relay-api-protocol.c b/src/plugins/relay/api/relay-api-protocol.c index c04c9e58b..e2e8d56c1 100644 --- a/src/plugins/relay/api/relay-api-protocol.c +++ b/src/plugins/relay/api/relay-api-protocol.c @@ -1,6 +1,4 @@ /* - * relay-api-protocol.c - API protocol for relay to client - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* API protocol for relay to client */ + #include #include #include diff --git a/src/plugins/relay/api/relay-api.c b/src/plugins/relay/api/relay-api.c index 17ae90b6e..af99381cb 100644 --- a/src/plugins/relay/api/relay-api.c +++ b/src/plugins/relay/api/relay-api.c @@ -1,6 +1,4 @@ /* - * relay-api.c - API protocol for relay to client - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* API protocol for relay to client */ + #include #include #include diff --git a/src/plugins/relay/api/remote/relay-remote-event.c b/src/plugins/relay/api/remote/relay-remote-event.c index 5dcecb9b6..0fcb27cb1 100644 --- a/src/plugins/relay/api/remote/relay-remote-event.c +++ b/src/plugins/relay/api/remote/relay-remote-event.c @@ -1,6 +1,4 @@ /* - * relay-remote-event.c - process events received from relay remote - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Process events received from relay remote */ + #include #include #include diff --git a/src/plugins/relay/api/remote/relay-remote-network.c b/src/plugins/relay/api/remote/relay-remote-network.c index 000d84aee..fd004be8f 100644 --- a/src/plugins/relay/api/remote/relay-remote-network.c +++ b/src/plugins/relay/api/remote/relay-remote-network.c @@ -1,6 +1,4 @@ /* - * relay-remote-network.c - network functions for relay remote - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Network functions for relay remote */ + #include #include #include diff --git a/src/plugins/relay/irc/relay-irc.c b/src/plugins/relay/irc/relay-irc.c index 438474438..148c15879 100644 --- a/src/plugins/relay/irc/relay-irc.c +++ b/src/plugins/relay/irc/relay-irc.c @@ -1,6 +1,4 @@ /* - * relay-irc.c - IRC protocol for relay to client: IRC proxy/bouncer - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* IRC protocol for relay to client: IRC proxy/bouncer */ + #include #include #include diff --git a/src/plugins/relay/relay-auth.c b/src/plugins/relay/relay-auth.c index 738c50a8e..5b1d4e45a 100644 --- a/src/plugins/relay/relay-auth.c +++ b/src/plugins/relay/relay-auth.c @@ -1,6 +1,4 @@ /* - * relay-auth.c - relay client authentication - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Relay client authentication */ + #include #include #include diff --git a/src/plugins/relay/relay-bar-item.c b/src/plugins/relay/relay-bar-item.c index 197904a25..a300e84e0 100644 --- a/src/plugins/relay/relay-bar-item.c +++ b/src/plugins/relay/relay-bar-item.c @@ -1,6 +1,4 @@ /* - * relay-bar-item.c - bar items for relay plugin - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar items for relay plugin */ + #include #include #include diff --git a/src/plugins/relay/relay-buffer.c b/src/plugins/relay/relay-buffer.c index 103d88f62..ea3697c7a 100644 --- a/src/plugins/relay/relay-buffer.c +++ b/src/plugins/relay/relay-buffer.c @@ -1,6 +1,4 @@ /* - * relay-buffer.c - display clients list on relay buffer - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Display clients list on relay buffer */ + #include #include #include diff --git a/src/plugins/relay/relay-client.c b/src/plugins/relay/relay-client.c index 793fb43c7..2a8c4914b 100644 --- a/src/plugins/relay/relay-client.c +++ b/src/plugins/relay/relay-client.c @@ -1,6 +1,4 @@ /* - * relay-client.c - client functions for relay plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Client functions for relay plugin */ + #include #include #include diff --git a/src/plugins/relay/relay-command.c b/src/plugins/relay/relay-command.c index e57206dbe..5e73fab14 100644 --- a/src/plugins/relay/relay-command.c +++ b/src/plugins/relay/relay-command.c @@ -1,6 +1,4 @@ /* - * relay-command.c - relay commands - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Relay commands */ + #include #include #include diff --git a/src/plugins/relay/relay-completion.c b/src/plugins/relay/relay-completion.c index fd1baa2d9..1f7e5647f 100644 --- a/src/plugins/relay/relay-completion.c +++ b/src/plugins/relay/relay-completion.c @@ -1,6 +1,4 @@ /* - * relay-completion.c - completion for relay command - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completion for relay command */ + #include #include #include diff --git a/src/plugins/relay/relay-config.c b/src/plugins/relay/relay-config.c index f0d2e447b..693e7a325 100644 --- a/src/plugins/relay/relay-config.c +++ b/src/plugins/relay/relay-config.c @@ -1,6 +1,4 @@ /* - * relay-config.c - relay configuration options (file relay.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Relay configuration options (file relay.conf) */ + #include #include #include diff --git a/src/plugins/relay/relay-http.c b/src/plugins/relay/relay-http.c index 31e83edd9..b899c1827 100644 --- a/src/plugins/relay/relay-http.c +++ b/src/plugins/relay/relay-http.c @@ -1,6 +1,4 @@ /* - * relay-http.c - HTTP request parser for relay plugin - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* HTTP request parser for relay plugin */ + #include #include #include diff --git a/src/plugins/relay/relay-info.c b/src/plugins/relay/relay-info.c index 959b48108..6482c73cd 100644 --- a/src/plugins/relay/relay-info.c +++ b/src/plugins/relay/relay-info.c @@ -1,6 +1,4 @@ /* - * relay-info.c - info and infolist hooks for relay plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info and infolist hooks for relay plugin */ + #include #include #include diff --git a/src/plugins/relay/relay-network.c b/src/plugins/relay/relay-network.c index c8d68ed33..1a7f33b2b 100644 --- a/src/plugins/relay/relay-network.c +++ b/src/plugins/relay/relay-network.c @@ -1,6 +1,4 @@ /* - * relay-network.c - network functions for relay plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Network functions for relay plugin */ + #include #include diff --git a/src/plugins/relay/relay-raw.c b/src/plugins/relay/relay-raw.c index fdf309a3d..613db54ea 100644 --- a/src/plugins/relay/relay-raw.c +++ b/src/plugins/relay/relay-raw.c @@ -1,6 +1,4 @@ /* - * relay-raw.c - functions for Relay raw data messages - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Functions for Relay raw data messages */ + #include #include #include diff --git a/src/plugins/relay/relay-remote.c b/src/plugins/relay/relay-remote.c index 29f5bb660..f43b5ff87 100644 --- a/src/plugins/relay/relay-remote.c +++ b/src/plugins/relay/relay-remote.c @@ -1,6 +1,4 @@ /* - * relay-remote.c - remote relay server functions for relay plugin - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Remote relay server functions for relay plugin */ + #include #include #include diff --git a/src/plugins/relay/relay-server.c b/src/plugins/relay/relay-server.c index 616474b50..710e7d43f 100644 --- a/src/plugins/relay/relay-server.c +++ b/src/plugins/relay/relay-server.c @@ -1,6 +1,4 @@ /* - * relay-server.c - server functions for relay plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Server functions for relay plugin */ + #include #include #include diff --git a/src/plugins/relay/relay-upgrade.c b/src/plugins/relay/relay-upgrade.c index 174c08da8..d72df3046 100644 --- a/src/plugins/relay/relay-upgrade.c +++ b/src/plugins/relay/relay-upgrade.c @@ -1,6 +1,4 @@ /* - * relay-upgrade.c - save/restore relay plugin data when upgrading WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Save/restore relay plugin data when upgrading WeeChat */ + #include #include #include diff --git a/src/plugins/relay/relay-websocket.c b/src/plugins/relay/relay-websocket.c index 517c62095..ade80f9e1 100644 --- a/src/plugins/relay/relay-websocket.c +++ b/src/plugins/relay/relay-websocket.c @@ -1,6 +1,4 @@ /* - * relay-websocket.c - websocket server functions for relay plugin (RFC 6455) - * * SPDX-FileCopyrightText: 2013-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Websocket server functions for relay plugin (RFC 6455) */ + #include #include #include diff --git a/src/plugins/relay/relay.c b/src/plugins/relay/relay.c index 81d7423b2..d34d185ae 100644 --- a/src/plugins/relay/relay.c +++ b/src/plugins/relay/relay.c @@ -1,6 +1,4 @@ /* - * relay.c - network communication between WeeChat and remote client - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Network communication between WeeChat and remote client */ + #include #include #include diff --git a/src/plugins/relay/weechat/relay-weechat-msg.c b/src/plugins/relay/weechat/relay-weechat-msg.c index a9447807d..b622726d9 100644 --- a/src/plugins/relay/weechat/relay-weechat-msg.c +++ b/src/plugins/relay/weechat/relay-weechat-msg.c @@ -1,6 +1,4 @@ /* - * relay-weechat-msg.c - build binary messages for WeeChat protocol - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Build binary messages for WeeChat protocol */ + #include #include #include diff --git a/src/plugins/relay/weechat/relay-weechat-nicklist.c b/src/plugins/relay/weechat/relay-weechat-nicklist.c index 95833d91f..61e492021 100644 --- a/src/plugins/relay/weechat/relay-weechat-nicklist.c +++ b/src/plugins/relay/weechat/relay-weechat-nicklist.c @@ -1,6 +1,4 @@ /* - * relay-weechat-nicklist.c - nicklist functions for WeeChat protocol - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Nicklist functions for WeeChat protocol */ + #include #include diff --git a/src/plugins/relay/weechat/relay-weechat-protocol.c b/src/plugins/relay/weechat/relay-weechat-protocol.c index bc89818dc..7436949bf 100644 --- a/src/plugins/relay/weechat/relay-weechat-protocol.c +++ b/src/plugins/relay/weechat/relay-weechat-protocol.c @@ -1,6 +1,4 @@ /* - * relay-weechat-protocol.c - WeeChat protocol for relay to client - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat protocol for relay to client */ + #include #include #include diff --git a/src/plugins/relay/weechat/relay-weechat.c b/src/plugins/relay/weechat/relay-weechat.c index 6a018261b..b3cb092f0 100644 --- a/src/plugins/relay/weechat/relay-weechat.c +++ b/src/plugins/relay/weechat/relay-weechat.c @@ -1,6 +1,4 @@ /* - * relay-weechat.c - WeeChat protocol for relay to client - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* WeeChat protocol for relay to client */ + #include #include #include diff --git a/src/plugins/ruby/weechat-ruby-api.c b/src/plugins/ruby/weechat-ruby-api.c index 767fc4999..b0ab3d47e 100644 --- a/src/plugins/ruby/weechat-ruby-api.c +++ b/src/plugins/ruby/weechat-ruby-api.c @@ -1,6 +1,4 @@ /* - * weechat-ruby-api.c - ruby API functions - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2007 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2012 Simon Arlott @@ -23,6 +21,8 @@ * along with WeeChat. If not, see . */ +/* Ruby API functions */ + #undef _ #include diff --git a/src/plugins/ruby/weechat-ruby.c b/src/plugins/ruby/weechat-ruby.c index 3de0bbcdf..5bad9bad6 100644 --- a/src/plugins/ruby/weechat-ruby.c +++ b/src/plugins/ruby/weechat-ruby.c @@ -1,6 +1,4 @@ /* - * weechat-ruby.c - ruby plugin for WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2005-2007 Emmanuel Bouthenot * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Ruby plugin for WeeChat */ + #undef _ #include diff --git a/src/plugins/script/script-action.c b/src/plugins/script/script-action.c index b2ecb8ada..b6d41f5fd 100644 --- a/src/plugins/script/script-action.c +++ b/src/plugins/script/script-action.c @@ -1,6 +1,4 @@ /* - * script-action.c - actions on scripts - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Actions on scripts */ + #include #include #include diff --git a/src/plugins/script/script-buffer.c b/src/plugins/script/script-buffer.c index 12961bc58..c7a69c0bf 100644 --- a/src/plugins/script/script-buffer.c +++ b/src/plugins/script/script-buffer.c @@ -1,6 +1,4 @@ /* - * script-buffer.c - display scripts on script buffer - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Display scripts on script buffer */ + #include #include #include diff --git a/src/plugins/script/script-command.c b/src/plugins/script/script-command.c index a8b23c3a3..020188015 100644 --- a/src/plugins/script/script-command.c +++ b/src/plugins/script/script-command.c @@ -1,6 +1,4 @@ /* - * script-command.c - script command - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Script command */ + #include #include #include diff --git a/src/plugins/script/script-completion.c b/src/plugins/script/script-completion.c index 99710ba48..434407c90 100644 --- a/src/plugins/script/script-completion.c +++ b/src/plugins/script/script-completion.c @@ -1,6 +1,4 @@ /* - * script-completion.c - completions for script command - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completions for script command */ + #include #include #include diff --git a/src/plugins/script/script-config.c b/src/plugins/script/script-config.c index 0fcdfc4a4..83a04e37c 100644 --- a/src/plugins/script/script-config.c +++ b/src/plugins/script/script-config.c @@ -1,6 +1,4 @@ /* - * script-config.c - script configuration options (file script.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Script configuration options (file script.conf) */ + #include #include #include diff --git a/src/plugins/script/script-info.c b/src/plugins/script/script-info.c index 4ca0636ae..bcd19a563 100644 --- a/src/plugins/script/script-info.c +++ b/src/plugins/script/script-info.c @@ -1,6 +1,4 @@ /* - * script-info.c - info, infolist and hdata hooks for script plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info, infolist and hdata hooks for script plugin */ + #include #include #include diff --git a/src/plugins/script/script-mouse.c b/src/plugins/script/script-mouse.c index d54e68f0b..9816bb19b 100644 --- a/src/plugins/script/script-mouse.c +++ b/src/plugins/script/script-mouse.c @@ -1,6 +1,4 @@ /* - * script-mouse.c - mouse actions for script - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Mouse actions for script */ + #include #include diff --git a/src/plugins/script/script-repo.c b/src/plugins/script/script-repo.c index bb062f5df..1903f59c2 100644 --- a/src/plugins/script/script-repo.c +++ b/src/plugins/script/script-repo.c @@ -1,6 +1,4 @@ /* - * script-repo.c - download and read repository file (plugins.xml.gz) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Download and read repository file (plugins.xml.gz) */ + /* * this define is needed for strptime() * but is not used for OpenBSD, it causes bug with gcrypt (see bug #37373) diff --git a/src/plugins/script/script.c b/src/plugins/script/script.c index dbfc9042e..71d9d0fb1 100644 --- a/src/plugins/script/script.c +++ b/src/plugins/script/script.c @@ -1,6 +1,4 @@ /* - * script.c - script manager for WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Script manager for WeeChat */ + #include #include #include diff --git a/src/plugins/spell/spell-bar-item.c b/src/plugins/spell/spell-bar-item.c index 203e1ec7e..a21242778 100644 --- a/src/plugins/spell/spell-bar-item.c +++ b/src/plugins/spell/spell-bar-item.c @@ -1,6 +1,4 @@ /* - * spell-bar-item.c - bar items for spell checker plugin - * * SPDX-FileCopyrightText: 2012 Nils Görs * SPDX-FileCopyrightText: 2012-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Bar items for spell checker plugin */ + #include #include #include diff --git a/src/plugins/spell/spell-command.c b/src/plugins/spell/spell-command.c index 544ce0f3c..6bf40b0c7 100644 --- a/src/plugins/spell/spell-command.c +++ b/src/plugins/spell/spell-command.c @@ -1,6 +1,4 @@ /* - * spell-command.c - spell checker commands - * * SPDX-FileCopyrightText: 2013-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Spell checker commands */ + #include #include #include diff --git a/src/plugins/spell/spell-completion.c b/src/plugins/spell/spell-completion.c index ec74eb1b9..7a05346fd 100644 --- a/src/plugins/spell/spell-completion.c +++ b/src/plugins/spell/spell-completion.c @@ -1,6 +1,4 @@ /* - * spell-completion.c - completion for spell checker commands - * * SPDX-FileCopyrightText: 2013-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completion for spell checker commands */ + #include #include #include diff --git a/src/plugins/spell/spell-config.c b/src/plugins/spell/spell-config.c index cc1c85613..0507fcb19 100644 --- a/src/plugins/spell/spell-config.c +++ b/src/plugins/spell/spell-config.c @@ -1,6 +1,4 @@ /* - * spell-config.c - spell checker configuration options (file spell.conf) - * * SPDX-FileCopyrightText: 2006 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2006-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Spell checker configuration options (file spell.conf) */ + #include #include #include diff --git a/src/plugins/spell/spell-info.c b/src/plugins/spell/spell-info.c index c1b185d02..048d48289 100644 --- a/src/plugins/spell/spell-info.c +++ b/src/plugins/spell/spell-info.c @@ -1,6 +1,4 @@ /* - * spell-info.c - info for spell checker plugin - * * SPDX-FileCopyrightText: 2013-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info for spell checker plugin */ + #include #include #include diff --git a/src/plugins/spell/spell-speller.c b/src/plugins/spell/spell-speller.c index 95232682a..5efefe918 100644 --- a/src/plugins/spell/spell-speller.c +++ b/src/plugins/spell/spell-speller.c @@ -1,6 +1,4 @@ /* - * spell-speller.c - speller management for spell checker plugin - * * SPDX-FileCopyrightText: 2006 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2006-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Speller management for spell checker plugin */ + #include #include diff --git a/src/plugins/spell/spell.c b/src/plugins/spell/spell.c index 87b511a90..d0595322f 100644 --- a/src/plugins/spell/spell.c +++ b/src/plugins/spell/spell.c @@ -1,6 +1,4 @@ /* - * spell.c - spell checker plugin for WeeChat - * * SPDX-FileCopyrightText: 2006 Emmanuel Bouthenot * SPDX-FileCopyrightText: 2006-2025 Sébastien Helleu * SPDX-FileCopyrightText: 2012 Nils Görs @@ -23,6 +21,8 @@ * along with WeeChat. If not, see . */ +/* Spell checker plugin for WeeChat */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/tcl/weechat-tcl-api.c b/src/plugins/tcl/weechat-tcl-api.c index 306b671b7..644d471c7 100644 --- a/src/plugins/tcl/weechat-tcl-api.c +++ b/src/plugins/tcl/weechat-tcl-api.c @@ -1,6 +1,4 @@ /* - * weechat-tcl-api.c - tcl API functions - * * SPDX-FileCopyrightText: 2008-2010 Dmitry Kobylin * SPDX-FileCopyrightText: 2008 Julien Louis * SPDX-FileCopyrightText: 2008-2025 Sébastien Helleu @@ -24,6 +22,8 @@ * along with WeeChat. If not, see . */ +/* Tcl API functions */ + #undef _ #include diff --git a/src/plugins/tcl/weechat-tcl.c b/src/plugins/tcl/weechat-tcl.c index 1806c7287..895a62237 100644 --- a/src/plugins/tcl/weechat-tcl.c +++ b/src/plugins/tcl/weechat-tcl.c @@ -1,6 +1,4 @@ /* - * weechat-tcl.c - tcl plugin for WeeChat - * * SPDX-FileCopyrightText: 2008-2010 Dmitry Kobylin * SPDX-FileCopyrightText: 2008-2025 Sébastien Helleu * @@ -22,6 +20,8 @@ * along with WeeChat. If not, see . */ +/* Tcl plugin for WeeChat */ + #undef _ #include diff --git a/src/plugins/trigger/trigger-buffer.c b/src/plugins/trigger/trigger-buffer.c index 82ff3a450..964eb673b 100644 --- a/src/plugins/trigger/trigger-buffer.c +++ b/src/plugins/trigger/trigger-buffer.c @@ -1,6 +1,4 @@ /* - * trigger-buffer.c - debug buffer for triggers - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Debug buffer for triggers */ + #include #include #include diff --git a/src/plugins/trigger/trigger-callback.c b/src/plugins/trigger/trigger-callback.c index 95a89d1a8..e69157b58 100644 --- a/src/plugins/trigger/trigger-callback.c +++ b/src/plugins/trigger/trigger-callback.c @@ -1,6 +1,4 @@ /* - * trigger-callback.c - callbacks for triggers - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Callbacks for triggers */ + #include #include #include diff --git a/src/plugins/trigger/trigger-command.c b/src/plugins/trigger/trigger-command.c index 737d0f5c2..c631b7178 100644 --- a/src/plugins/trigger/trigger-command.c +++ b/src/plugins/trigger/trigger-command.c @@ -1,6 +1,4 @@ /* - * trigger-command.c - trigger command - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Trigger command */ + #include #include #include diff --git a/src/plugins/trigger/trigger-completion.c b/src/plugins/trigger/trigger-completion.c index 465f8902f..af947ae94 100644 --- a/src/plugins/trigger/trigger-completion.c +++ b/src/plugins/trigger/trigger-completion.c @@ -1,6 +1,4 @@ /* - * trigger-completion.c - completion for trigger commands - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Completion for trigger commands */ + #include #include #include diff --git a/src/plugins/trigger/trigger-config.c b/src/plugins/trigger/trigger-config.c index 48e386ace..308f83157 100644 --- a/src/plugins/trigger/trigger-config.c +++ b/src/plugins/trigger/trigger-config.c @@ -1,6 +1,4 @@ /* - * trigger-config.c - trigger configuration options (file trigger.conf) - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Trigger configuration options (file trigger.conf) */ + #include #include #include diff --git a/src/plugins/trigger/trigger.c b/src/plugins/trigger/trigger.c index f0656e0d5..49a10f312 100644 --- a/src/plugins/trigger/trigger.c +++ b/src/plugins/trigger/trigger.c @@ -1,6 +1,4 @@ /* - * trigger.c - trigger plugin for WeeChat - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Trigger plugin for WeeChat */ + #include #include #include diff --git a/src/plugins/typing/typing-bar-item.c b/src/plugins/typing/typing-bar-item.c index 8618afd68..5c654b471 100644 --- a/src/plugins/typing/typing-bar-item.c +++ b/src/plugins/typing/typing-bar-item.c @@ -1,6 +1,4 @@ /* - * typing-bar-item.c - bar items for typing plugin - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Bar items for typing plugin */ + #include #include #include diff --git a/src/plugins/typing/typing-config.c b/src/plugins/typing/typing-config.c index 3bad2a868..1d5d0fb85 100644 --- a/src/plugins/typing/typing-config.c +++ b/src/plugins/typing/typing-config.c @@ -1,6 +1,4 @@ /* - * typing-config.c - typing configuration options (file typing.conf) - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Typing configuration options (file typing.conf) */ + #include #include #include diff --git a/src/plugins/typing/typing-status.c b/src/plugins/typing/typing-status.c index 7bee0a949..c46f190f9 100644 --- a/src/plugins/typing/typing-status.c +++ b/src/plugins/typing/typing-status.c @@ -1,6 +1,4 @@ /* - * typing-status.c - manage self and other users typing status - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Manage self and other users typing status */ + #ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/src/plugins/typing/typing.c b/src/plugins/typing/typing.c index 83253b766..515e801d4 100644 --- a/src/plugins/typing/typing.c +++ b/src/plugins/typing/typing.c @@ -1,6 +1,4 @@ /* - * typing.c - manage typing status of users - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Manage typing status of users */ + #include #include #include diff --git a/src/plugins/xfer/xfer-buffer.c b/src/plugins/xfer/xfer-buffer.c index 2db2869e7..1cd4cbf54 100644 --- a/src/plugins/xfer/xfer-buffer.c +++ b/src/plugins/xfer/xfer-buffer.c @@ -1,6 +1,4 @@ /* - * xfer-buffer.c - display xfer list on xfer buffer - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Display xfer list on xfer buffer */ + #include #include #include diff --git a/src/plugins/xfer/xfer-chat.c b/src/plugins/xfer/xfer-chat.c index 3fed4d254..471b9d990 100644 --- a/src/plugins/xfer/xfer-chat.c +++ b/src/plugins/xfer/xfer-chat.c @@ -1,6 +1,4 @@ /* - * xfer-chat.c - chat with direct connection to remote host - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Chat with direct connection to remote host */ + #include #include #include diff --git a/src/plugins/xfer/xfer-command.c b/src/plugins/xfer/xfer-command.c index abe5c157f..f63ce3bbd 100644 --- a/src/plugins/xfer/xfer-command.c +++ b/src/plugins/xfer/xfer-command.c @@ -1,6 +1,4 @@ /* - * xfer-command.c - xfer command - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Xfer command */ + #include #include #include diff --git a/src/plugins/xfer/xfer-completion.c b/src/plugins/xfer/xfer-completion.c index 99bd4be6a..06e99db46 100644 --- a/src/plugins/xfer/xfer-completion.c +++ b/src/plugins/xfer/xfer-completion.c @@ -1,6 +1,4 @@ /* - * xfer-completion.c - nick completion for xfer chats - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Nick completion for xfer chats */ + #include #include #include diff --git a/src/plugins/xfer/xfer-config.c b/src/plugins/xfer/xfer-config.c index 9d5716c2d..99b4a6edc 100644 --- a/src/plugins/xfer/xfer-config.c +++ b/src/plugins/xfer/xfer-config.c @@ -1,6 +1,4 @@ /* - * xfer-config.c - xfer configuration options (file xfer.conf) - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Xfer configuration options (file xfer.conf) */ + #include #include diff --git a/src/plugins/xfer/xfer-dcc.c b/src/plugins/xfer/xfer-dcc.c index 6343f2531..8eb1e3d56 100644 --- a/src/plugins/xfer/xfer-dcc.c +++ b/src/plugins/xfer/xfer-dcc.c @@ -1,6 +1,4 @@ /* - * xfer-dcc.c - file transfer via DCC protocol - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* File transfer via DCC protocol */ + #include #include #include diff --git a/src/plugins/xfer/xfer-file.c b/src/plugins/xfer/xfer-file.c index 4ef8fffde..1c2cbe1f6 100644 --- a/src/plugins/xfer/xfer-file.c +++ b/src/plugins/xfer/xfer-file.c @@ -1,6 +1,4 @@ /* - * xfer-file.c - file functions for xfer plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* File functions for xfer plugin */ + #include #include #include diff --git a/src/plugins/xfer/xfer-info.c b/src/plugins/xfer/xfer-info.c index 94a409493..27a987b23 100644 --- a/src/plugins/xfer/xfer-info.c +++ b/src/plugins/xfer/xfer-info.c @@ -1,6 +1,4 @@ /* - * xfer-info.c - info and infolist hooks for xfer plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Info and infolist hooks for xfer plugin */ + #include #include diff --git a/src/plugins/xfer/xfer-network.c b/src/plugins/xfer/xfer-network.c index 37b1926ea..0d8c6cd3a 100644 --- a/src/plugins/xfer/xfer-network.c +++ b/src/plugins/xfer/xfer-network.c @@ -1,6 +1,4 @@ /* - * xfer-network.c - network functions for xfer plugin - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Network functions for xfer plugin */ + #include #include #include diff --git a/src/plugins/xfer/xfer-upgrade.c b/src/plugins/xfer/xfer-upgrade.c index 5e657d7ea..d25702112 100644 --- a/src/plugins/xfer/xfer-upgrade.c +++ b/src/plugins/xfer/xfer-upgrade.c @@ -1,6 +1,4 @@ /* - * xfer-upgrade.c - save/restore xfer plugin data when upgrading WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Save/restore xfer plugin data when upgrading WeeChat */ + #include #include diff --git a/src/plugins/xfer/xfer.c b/src/plugins/xfer/xfer.c index ee49f7ffe..2672459a5 100644 --- a/src/plugins/xfer/xfer.c +++ b/src/plugins/xfer/xfer.c @@ -1,6 +1,4 @@ /* - * xfer.c - file transfer and direct chat plugin for WeeChat - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* File transfer and direct chat plugin for WeeChat */ + #include #include #include diff --git a/tests/scripts/test-scripts.cpp b/tests/scripts/test-scripts.cpp index 233bbd7d5..f18a9820b 100644 --- a/tests/scripts/test-scripts.cpp +++ b/tests/scripts/test-scripts.cpp @@ -1,6 +1,4 @@ /* - * test-scripts.cpp - test scripting API - * * SPDX-FileCopyrightText: 2017-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test scripting API */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/tests-record.cpp b/tests/tests-record.cpp index 2f43bdef1..21826267e 100644 --- a/tests/tests-record.cpp +++ b/tests/tests-record.cpp @@ -1,6 +1,4 @@ /* - * tests-record.cpp - record and search in messages displayed - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Record and search in messages displayed */ + #include #include #include diff --git a/tests/tests.cpp b/tests/tests.cpp index 387260907..955a0e6b9 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -1,6 +1,4 @@ /* - * tests.cpp - run WeeChat tests - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Run WeeChat tests */ + #include #include #include diff --git a/tests/unit/core/hook/test-hook-command-run.cpp b/tests/unit/core/hook/test-hook-command-run.cpp index ec07963b8..d44916d4b 100644 --- a/tests/unit/core/hook/test-hook-command-run.cpp +++ b/tests/unit/core/hook/test-hook-command-run.cpp @@ -1,6 +1,4 @@ /* - * test-hook-command-run.cpp - test hook command run functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook command run functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-command.cpp b/tests/unit/core/hook/test-hook-command.cpp index 96aa8901d..fbe4e461c 100644 --- a/tests/unit/core/hook/test-hook-command.cpp +++ b/tests/unit/core/hook/test-hook-command.cpp @@ -1,6 +1,4 @@ /* - * test-hook-command.cpp - test hook command functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook command functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-completion.cpp b/tests/unit/core/hook/test-hook-completion.cpp index 44acaa75e..ec1960e16 100644 --- a/tests/unit/core/hook/test-hook-completion.cpp +++ b/tests/unit/core/hook/test-hook-completion.cpp @@ -1,6 +1,4 @@ /* - * test-hook-completion.cpp - test hook completion functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook completion functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-config.cpp b/tests/unit/core/hook/test-hook-config.cpp index 2c9f963d8..406e0232b 100644 --- a/tests/unit/core/hook/test-hook-config.cpp +++ b/tests/unit/core/hook/test-hook-config.cpp @@ -1,6 +1,4 @@ /* - * test-hook-config.cpp - test hook config functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook config functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-connect.cpp b/tests/unit/core/hook/test-hook-connect.cpp index c3718f28f..49f6afd21 100644 --- a/tests/unit/core/hook/test-hook-connect.cpp +++ b/tests/unit/core/hook/test-hook-connect.cpp @@ -1,6 +1,4 @@ /* - * test-hook-connect.cpp - test hook connect functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook connect functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-fd.cpp b/tests/unit/core/hook/test-hook-fd.cpp index 2ca429506..062fb41ea 100644 --- a/tests/unit/core/hook/test-hook-fd.cpp +++ b/tests/unit/core/hook/test-hook-fd.cpp @@ -1,6 +1,4 @@ /* - * test-hook-fd.cpp - test hook fd functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook fd functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-focus.cpp b/tests/unit/core/hook/test-hook-focus.cpp index 1beb06ad4..e60f9224c 100644 --- a/tests/unit/core/hook/test-hook-focus.cpp +++ b/tests/unit/core/hook/test-hook-focus.cpp @@ -1,6 +1,4 @@ /* - * test-hook-focus.cpp - test hook focus functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook focus functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-hdata.cpp b/tests/unit/core/hook/test-hook-hdata.cpp index 718e3dac0..80dc15423 100644 --- a/tests/unit/core/hook/test-hook-hdata.cpp +++ b/tests/unit/core/hook/test-hook-hdata.cpp @@ -1,6 +1,4 @@ /* - * test-hook-hdata.cpp - test hook hdata functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook hdata functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-hsignal.cpp b/tests/unit/core/hook/test-hook-hsignal.cpp index d18759755..351dbacd2 100644 --- a/tests/unit/core/hook/test-hook-hsignal.cpp +++ b/tests/unit/core/hook/test-hook-hsignal.cpp @@ -1,6 +1,4 @@ /* - * test-hook-hsignal.cpp - test hook hsignal functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook hsignal functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-info-hashtable.cpp b/tests/unit/core/hook/test-hook-info-hashtable.cpp index 264fc86f8..1edaa97d3 100644 --- a/tests/unit/core/hook/test-hook-info-hashtable.cpp +++ b/tests/unit/core/hook/test-hook-info-hashtable.cpp @@ -1,6 +1,4 @@ /* - * test-hook-info-hashtable.cpp - test hook info hashtable functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook info hashtable functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-info.cpp b/tests/unit/core/hook/test-hook-info.cpp index 44bff5e76..6640c78fd 100644 --- a/tests/unit/core/hook/test-hook-info.cpp +++ b/tests/unit/core/hook/test-hook-info.cpp @@ -1,6 +1,4 @@ /* - * test-hook-info.cpp - test hook info functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook info functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-infolist.cpp b/tests/unit/core/hook/test-hook-infolist.cpp index 8d86277de..f39cc2712 100644 --- a/tests/unit/core/hook/test-hook-infolist.cpp +++ b/tests/unit/core/hook/test-hook-infolist.cpp @@ -1,6 +1,4 @@ /* - * test-hook-infolist.cpp - test hook infolist functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook infolist functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-line.cpp b/tests/unit/core/hook/test-hook-line.cpp index 38a92168e..724975432 100644 --- a/tests/unit/core/hook/test-hook-line.cpp +++ b/tests/unit/core/hook/test-hook-line.cpp @@ -1,6 +1,4 @@ /* - * test-hook-line.cpp - test hook line functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook line functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-modifier.cpp b/tests/unit/core/hook/test-hook-modifier.cpp index a36847ce4..f4a82f037 100644 --- a/tests/unit/core/hook/test-hook-modifier.cpp +++ b/tests/unit/core/hook/test-hook-modifier.cpp @@ -1,6 +1,4 @@ /* - * test-hook-modifier.cpp - test hook modifier functions - * * SPDX-FileCopyrightText: 2018-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook modifier functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-print.cpp b/tests/unit/core/hook/test-hook-print.cpp index 3dbb0b58e..64f58f8da 100644 --- a/tests/unit/core/hook/test-hook-print.cpp +++ b/tests/unit/core/hook/test-hook-print.cpp @@ -1,6 +1,4 @@ /* - * test-hook-print.cpp - test hook print functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook print functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-process.cpp b/tests/unit/core/hook/test-hook-process.cpp index 4c76cae0c..98ae3567d 100644 --- a/tests/unit/core/hook/test-hook-process.cpp +++ b/tests/unit/core/hook/test-hook-process.cpp @@ -1,6 +1,4 @@ /* - * test-hook-process.cpp - test hook process functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook process functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-signal.cpp b/tests/unit/core/hook/test-hook-signal.cpp index 1e7ed02fc..435d0f413 100644 --- a/tests/unit/core/hook/test-hook-signal.cpp +++ b/tests/unit/core/hook/test-hook-signal.cpp @@ -1,6 +1,4 @@ /* - * test-hook-signal.cpp - test hook signal functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook signal functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-timer.cpp b/tests/unit/core/hook/test-hook-timer.cpp index b6fa0084a..6f49f669f 100644 --- a/tests/unit/core/hook/test-hook-timer.cpp +++ b/tests/unit/core/hook/test-hook-timer.cpp @@ -1,6 +1,4 @@ /* - * test-hook-timer.cpp - test hook timer functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook timer functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/hook/test-hook-url.cpp b/tests/unit/core/hook/test-hook-url.cpp index 7ec89b888..38219b701 100644 --- a/tests/unit/core/hook/test-hook-url.cpp +++ b/tests/unit/core/hook/test-hook-url.cpp @@ -1,6 +1,4 @@ /* - * test-hook-url.cpp - test hook url functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook url functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/test-core-arraylist.cpp b/tests/unit/core/test-core-arraylist.cpp index 4d67cd55c..5704b7a98 100644 --- a/tests/unit/core/test-core-arraylist.cpp +++ b/tests/unit/core/test-core-arraylist.cpp @@ -1,6 +1,4 @@ /* - * test-core-arraylist.cpp - test arraylist functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test arraylist functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-calc.cpp b/tests/unit/core/test-core-calc.cpp index f73a9ad54..3bf2a46fb 100644 --- a/tests/unit/core/test-core-calc.cpp +++ b/tests/unit/core/test-core-calc.cpp @@ -1,6 +1,4 @@ /* - * test-core-calc.cpp - test calculations functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test calculations functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-command.cpp b/tests/unit/core/test-core-command.cpp index 88d75a766..5dbcce8ee 100644 --- a/tests/unit/core/test-core-command.cpp +++ b/tests/unit/core/test-core-command.cpp @@ -1,6 +1,4 @@ /* - * test-core-command.cpp - test command functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test command functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/test-core-config-file.cpp b/tests/unit/core/test-core-config-file.cpp index 3a8810de3..487e4139a 100644 --- a/tests/unit/core/test-core-config-file.cpp +++ b/tests/unit/core/test-core-config-file.cpp @@ -1,6 +1,4 @@ /* - * test-core-config-file.cpp - test configuration file functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test configuration file functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/test-core-crypto.cpp b/tests/unit/core/test-core-crypto.cpp index 8b5427161..0c46033fd 100644 --- a/tests/unit/core/test-core-crypto.cpp +++ b/tests/unit/core/test-core-crypto.cpp @@ -1,6 +1,4 @@ /* - * test-core-crypto.cpp - test cryptographic functions - * * SPDX-FileCopyrightText: 2020-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test cryptographic functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-dir.cpp b/tests/unit/core/test-core-dir.cpp index 670ac82ec..5c3b63903 100644 --- a/tests/unit/core/test-core-dir.cpp +++ b/tests/unit/core/test-core-dir.cpp @@ -1,6 +1,4 @@ /* - * test-core-dir.cpp - test directory/file functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test directory/file functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-eval.cpp b/tests/unit/core/test-core-eval.cpp index e0fb62438..ae88e3b9f 100644 --- a/tests/unit/core/test-core-eval.cpp +++ b/tests/unit/core/test-core-eval.cpp @@ -1,6 +1,4 @@ /* - * test-core-eval.cpp - test evaluation functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test evaluation functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-hashtable.cpp b/tests/unit/core/test-core-hashtable.cpp index e7b301dc5..4b148edd2 100644 --- a/tests/unit/core/test-core-hashtable.cpp +++ b/tests/unit/core/test-core-hashtable.cpp @@ -1,6 +1,4 @@ /* - * test-core-hashtable.cpp - test hashtable functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hashtable functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-hdata.cpp b/tests/unit/core/test-core-hdata.cpp index 2344220b2..0519d2267 100644 --- a/tests/unit/core/test-core-hdata.cpp +++ b/tests/unit/core/test-core-hdata.cpp @@ -1,6 +1,4 @@ /* - * test-core-hdata.cpp - test hdata functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hdata functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-hook.cpp b/tests/unit/core/test-core-hook.cpp index da33fa6f0..5555200f8 100644 --- a/tests/unit/core/test-core-hook.cpp +++ b/tests/unit/core/test-core-hook.cpp @@ -1,6 +1,4 @@ /* - * test-core-hook.cpp - test hook functions - * * SPDX-FileCopyrightText: 2018-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hook functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-infolist.cpp b/tests/unit/core/test-core-infolist.cpp index 7fa8a6458..fcc52c6b8 100644 --- a/tests/unit/core/test-core-infolist.cpp +++ b/tests/unit/core/test-core-infolist.cpp @@ -1,6 +1,4 @@ /* - * test-core-infolist.cpp - test infolist functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test infolist functions */ + #include "CppUTest/TestHarness.h" #include "string.h" diff --git a/tests/unit/core/test-core-input.cpp b/tests/unit/core/test-core-input.cpp index d92569c41..5dd4a3356 100644 --- a/tests/unit/core/test-core-input.cpp +++ b/tests/unit/core/test-core-input.cpp @@ -1,6 +1,4 @@ /* - * test-core-input.cpp - test input functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test input functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/test-core-list.cpp b/tests/unit/core/test-core-list.cpp index fbdaa5322..8c92b6934 100644 --- a/tests/unit/core/test-core-list.cpp +++ b/tests/unit/core/test-core-list.cpp @@ -1,6 +1,4 @@ /* - * test-core-list.cpp - test list functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test list functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-network.cpp b/tests/unit/core/test-core-network.cpp index 3c5f99bcb..6b81e50f3 100644 --- a/tests/unit/core/test-core-network.cpp +++ b/tests/unit/core/test-core-network.cpp @@ -1,6 +1,4 @@ /* - * test-core-network.cpp - test network functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test network functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-secure.cpp b/tests/unit/core/test-core-secure.cpp index c13e343d5..9d333936f 100644 --- a/tests/unit/core/test-core-secure.cpp +++ b/tests/unit/core/test-core-secure.cpp @@ -1,6 +1,4 @@ /* - * test-core-secure.cpp - test secured data functions - * * SPDX-FileCopyrightText: 2018-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test secured data functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-signal.cpp b/tests/unit/core/test-core-signal.cpp index 5eb1a3786..a5c82ea3c 100644 --- a/tests/unit/core/test-core-signal.cpp +++ b/tests/unit/core/test-core-signal.cpp @@ -1,6 +1,4 @@ /* - * test-core-signal.cpp - test util functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test util functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/test-core-string.cpp b/tests/unit/core/test-core-string.cpp index bed6160cd..ec61c93e8 100644 --- a/tests/unit/core/test-core-string.cpp +++ b/tests/unit/core/test-core-string.cpp @@ -1,6 +1,4 @@ /* - * test-core-string.cpp - test string functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test string functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/test-core-sys.cpp b/tests/unit/core/test-core-sys.cpp index 68cd32cc2..c13437d69 100644 --- a/tests/unit/core/test-core-sys.cpp +++ b/tests/unit/core/test-core-sys.cpp @@ -1,6 +1,4 @@ /* - * test-core-sys.cpp - test system functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test system functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/test-core-url.cpp b/tests/unit/core/test-core-url.cpp index 8caa2ac18..677c03ec1 100644 --- a/tests/unit/core/test-core-url.cpp +++ b/tests/unit/core/test-core-url.cpp @@ -1,6 +1,4 @@ /* - * test-core-url.cpp - test URL functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test URL functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/core/test-core-utf8.cpp b/tests/unit/core/test-core-utf8.cpp index cc720f5a6..9fae7f992 100644 --- a/tests/unit/core/test-core-utf8.cpp +++ b/tests/unit/core/test-core-utf8.cpp @@ -1,6 +1,4 @@ /* - * test-core-utf8.cpp - test UTF-8 string functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test UTF-8 string functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/core/test-core-util.cpp b/tests/unit/core/test-core-util.cpp index d2eb8651f..a4b0713da 100644 --- a/tests/unit/core/test-core-util.cpp +++ b/tests/unit/core/test-core-util.cpp @@ -1,6 +1,4 @@ /* - * test-core-util.cpp - test util functions - * * SPDX-FileCopyrightText: 2014-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test util functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/gui/curses/test-gui-curses-mouse.cpp b/tests/unit/gui/curses/test-gui-curses-mouse.cpp index 9ddf26770..4f5f03c20 100644 --- a/tests/unit/gui/curses/test-gui-curses-mouse.cpp +++ b/tests/unit/gui/curses/test-gui-curses-mouse.cpp @@ -1,6 +1,4 @@ /* - * test-gui-curses-mouse.cpp - test mouse functions (Curses interface) - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test mouse functions (Curses interface) */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-bar-item-custom.cpp b/tests/unit/gui/test-gui-bar-item-custom.cpp index 89dffc637..da7cca53b 100644 --- a/tests/unit/gui/test-gui-bar-item-custom.cpp +++ b/tests/unit/gui/test-gui-bar-item-custom.cpp @@ -1,6 +1,4 @@ /* - * test-gui-bar-item-custom.cpp - test custom bar item functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test custom bar item functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-bar-item.cpp b/tests/unit/gui/test-gui-bar-item.cpp index f1df1b9f2..0d1f90bd3 100644 --- a/tests/unit/gui/test-gui-bar-item.cpp +++ b/tests/unit/gui/test-gui-bar-item.cpp @@ -1,6 +1,4 @@ /* - * test-gui-bar-item.cpp - test bar item functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test bar item functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-bar-window.cpp b/tests/unit/gui/test-gui-bar-window.cpp index 0429414f9..adb07bdb5 100644 --- a/tests/unit/gui/test-gui-bar-window.cpp +++ b/tests/unit/gui/test-gui-bar-window.cpp @@ -1,6 +1,4 @@ /* - * test-gui-bar-window.cpp - test bar window functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test bar window functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-bar.cpp b/tests/unit/gui/test-gui-bar.cpp index 563293e99..aebf1d8a5 100644 --- a/tests/unit/gui/test-gui-bar.cpp +++ b/tests/unit/gui/test-gui-bar.cpp @@ -1,6 +1,4 @@ /* - * test-gui-bar.cpp - test bar functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test bar functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-buffer.cpp b/tests/unit/gui/test-gui-buffer.cpp index 08fe4f05a..06a38871f 100644 --- a/tests/unit/gui/test-gui-buffer.cpp +++ b/tests/unit/gui/test-gui-buffer.cpp @@ -1,6 +1,4 @@ /* - * test-gui-buffer.cpp - test buffer functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test buffer functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-chat.cpp b/tests/unit/gui/test-gui-chat.cpp index 3cc0cd481..616c7ae8a 100644 --- a/tests/unit/gui/test-gui-chat.cpp +++ b/tests/unit/gui/test-gui-chat.cpp @@ -1,6 +1,4 @@ /* - * test-gui-chat.cpp - test chat functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test chat functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/gui/test-gui-color.cpp b/tests/unit/gui/test-gui-color.cpp index c10c9dcc5..b73c29361 100644 --- a/tests/unit/gui/test-gui-color.cpp +++ b/tests/unit/gui/test-gui-color.cpp @@ -1,6 +1,4 @@ /* - * test-gui-color.cpp - test color functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test color functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-filter.cpp b/tests/unit/gui/test-gui-filter.cpp index ed047fda7..bb129475f 100644 --- a/tests/unit/gui/test-gui-filter.cpp +++ b/tests/unit/gui/test-gui-filter.cpp @@ -1,6 +1,4 @@ /* - * test-gui-filter.cpp - test filter functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test filter functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-hotlist.cpp b/tests/unit/gui/test-gui-hotlist.cpp index 74f63104e..e5755cc6e 100644 --- a/tests/unit/gui/test-gui-hotlist.cpp +++ b/tests/unit/gui/test-gui-hotlist.cpp @@ -1,6 +1,4 @@ /* - * test-gui-hotlist.cpp - test hotlist functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test hotlist functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-input.cpp b/tests/unit/gui/test-gui-input.cpp index f3461efe8..a91f782c6 100644 --- a/tests/unit/gui/test-gui-input.cpp +++ b/tests/unit/gui/test-gui-input.cpp @@ -1,6 +1,4 @@ /* - * test-gui-input.cpp - test input functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test input functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-key.cpp b/tests/unit/gui/test-gui-key.cpp index b6a6b0a07..3f59456cf 100644 --- a/tests/unit/gui/test-gui-key.cpp +++ b/tests/unit/gui/test-gui-key.cpp @@ -1,6 +1,4 @@ /* - * test-gui-key.cpp - test key functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test key functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/gui/test-gui-line.cpp b/tests/unit/gui/test-gui-line.cpp index 375b8b0fc..f7ec6198e 100644 --- a/tests/unit/gui/test-gui-line.cpp +++ b/tests/unit/gui/test-gui-line.cpp @@ -1,6 +1,4 @@ /* - * test-gui-line.cpp - test line functions - * * SPDX-FileCopyrightText: 2018-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test line functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/gui/test-gui-nick.cpp b/tests/unit/gui/test-gui-nick.cpp index df82dc701..8e70748b0 100644 --- a/tests/unit/gui/test-gui-nick.cpp +++ b/tests/unit/gui/test-gui-nick.cpp @@ -1,6 +1,4 @@ /* - * test-gui-nick.cpp - test nick functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test nick functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/gui/test-gui-nicklist.cpp b/tests/unit/gui/test-gui-nicklist.cpp index 99794ac20..cb8842cc8 100644 --- a/tests/unit/gui/test-gui-nicklist.cpp +++ b/tests/unit/gui/test-gui-nicklist.cpp @@ -1,6 +1,4 @@ /* - * test-gui-nicklist.cpp - test nicklist functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test nicklist functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/alias/test-alias.cpp b/tests/unit/plugins/alias/test-alias.cpp index b6a985be2..c91da3c7f 100644 --- a/tests/unit/plugins/alias/test-alias.cpp +++ b/tests/unit/plugins/alias/test-alias.cpp @@ -1,6 +1,4 @@ /* - * test-alias.cpp - test alias functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test alias functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-batch.cpp b/tests/unit/plugins/irc/test-irc-batch.cpp index 95d9fb2a8..012dbdc4d 100644 --- a/tests/unit/plugins/irc/test-irc-batch.cpp +++ b/tests/unit/plugins/irc/test-irc-batch.cpp @@ -1,6 +1,4 @@ /* - * test-irc-batch.cpp - test IRC batch functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC batch functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-buffer.cpp b/tests/unit/plugins/irc/test-irc-buffer.cpp index 5300a5b40..460a32fa3 100644 --- a/tests/unit/plugins/irc/test-irc-buffer.cpp +++ b/tests/unit/plugins/irc/test-irc-buffer.cpp @@ -1,6 +1,4 @@ /* - * test-irc-buffer.cpp - test IRC buffer functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC buffer functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-channel.cpp b/tests/unit/plugins/irc/test-irc-channel.cpp index 1bfe5ecc1..7a3d65bdf 100644 --- a/tests/unit/plugins/irc/test-irc-channel.cpp +++ b/tests/unit/plugins/irc/test-irc-channel.cpp @@ -1,6 +1,4 @@ /* - * test-irc-channel.cpp - test IRC channel functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC channel functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/irc/test-irc-color.cpp b/tests/unit/plugins/irc/test-irc-color.cpp index 73036a3ca..b32483952 100644 --- a/tests/unit/plugins/irc/test-irc-color.cpp +++ b/tests/unit/plugins/irc/test-irc-color.cpp @@ -1,6 +1,4 @@ /* - * test-irc-color.cpp - test IRC color functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC color functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/irc/test-irc-command.cpp b/tests/unit/plugins/irc/test-irc-command.cpp index cede4c9c9..1ac597b13 100644 --- a/tests/unit/plugins/irc/test-irc-command.cpp +++ b/tests/unit/plugins/irc/test-irc-command.cpp @@ -1,6 +1,4 @@ /* - * test-irc-command.cpp - test IRC commands - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC commands */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/irc/test-irc-config.cpp b/tests/unit/plugins/irc/test-irc-config.cpp index 42e03fcc2..a715c2159 100644 --- a/tests/unit/plugins/irc/test-irc-config.cpp +++ b/tests/unit/plugins/irc/test-irc-config.cpp @@ -1,6 +1,4 @@ /* - * test-irc-config.cpp - test IRC configuration functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC configuration functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/irc/test-irc-ctcp.cpp b/tests/unit/plugins/irc/test-irc-ctcp.cpp index 15801f601..0745cab66 100644 --- a/tests/unit/plugins/irc/test-irc-ctcp.cpp +++ b/tests/unit/plugins/irc/test-irc-ctcp.cpp @@ -1,6 +1,4 @@ /* - * test-irc-ctcp.cpp - test IRC CTCP functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC CTCP functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-ignore.cpp b/tests/unit/plugins/irc/test-irc-ignore.cpp index b72fcb3c3..9335f0b69 100644 --- a/tests/unit/plugins/irc/test-irc-ignore.cpp +++ b/tests/unit/plugins/irc/test-irc-ignore.cpp @@ -1,6 +1,4 @@ /* - * test-irc-ignore.cpp - test IRC ignore functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC ignore functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/irc/test-irc-info.cpp b/tests/unit/plugins/irc/test-irc-info.cpp index bbfa8d3e0..cd5bfafe6 100644 --- a/tests/unit/plugins/irc/test-irc-info.cpp +++ b/tests/unit/plugins/irc/test-irc-info.cpp @@ -1,6 +1,4 @@ /* - * test-irc-info.cpp - test IRC info functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC info functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-join.cpp b/tests/unit/plugins/irc/test-irc-join.cpp index 73403cb62..8a91bdc81 100644 --- a/tests/unit/plugins/irc/test-irc-join.cpp +++ b/tests/unit/plugins/irc/test-irc-join.cpp @@ -1,6 +1,4 @@ /* - * test-irc-join.cpp - test IRC join functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC join functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-list.cpp b/tests/unit/plugins/irc/test-irc-list.cpp index 60f4d40f8..9d2221bc3 100644 --- a/tests/unit/plugins/irc/test-irc-list.cpp +++ b/tests/unit/plugins/irc/test-irc-list.cpp @@ -1,6 +1,4 @@ /* - * test-irc-list.cpp - test IRC list functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC list functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-message.cpp b/tests/unit/plugins/irc/test-irc-message.cpp index 5e7683212..8c796a392 100644 --- a/tests/unit/plugins/irc/test-irc-message.cpp +++ b/tests/unit/plugins/irc/test-irc-message.cpp @@ -1,6 +1,4 @@ /* - * test-irc-message.cpp - test IRC message functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC message functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-mode.cpp b/tests/unit/plugins/irc/test-irc-mode.cpp index 44a34228b..aec1a4e65 100644 --- a/tests/unit/plugins/irc/test-irc-mode.cpp +++ b/tests/unit/plugins/irc/test-irc-mode.cpp @@ -1,6 +1,4 @@ /* - * test-irc-mode.cpp - test IRC mode functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC mode functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/irc/test-irc-nick.cpp b/tests/unit/plugins/irc/test-irc-nick.cpp index 4a2dbe77a..1cfc91ae2 100644 --- a/tests/unit/plugins/irc/test-irc-nick.cpp +++ b/tests/unit/plugins/irc/test-irc-nick.cpp @@ -1,6 +1,4 @@ /* - * test-irc-nick.cpp - test IRC nick functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC nick functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-protocol.cpp b/tests/unit/plugins/irc/test-irc-protocol.cpp index b4ea5db67..bd756609e 100644 --- a/tests/unit/plugins/irc/test-irc-protocol.cpp +++ b/tests/unit/plugins/irc/test-irc-protocol.cpp @@ -1,6 +1,4 @@ /* - * test-irc-protocol.cpp - test IRC protocol functions - * * SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC protocol functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-sasl.cpp b/tests/unit/plugins/irc/test-irc-sasl.cpp index c2d181c13..4e91eace1 100644 --- a/tests/unit/plugins/irc/test-irc-sasl.cpp +++ b/tests/unit/plugins/irc/test-irc-sasl.cpp @@ -1,6 +1,4 @@ /* - * test-irc-sasl.cpp - test IRC SASL functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC SASL functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/irc/test-irc-server.cpp b/tests/unit/plugins/irc/test-irc-server.cpp index 0aa73b5b4..c486bd1e4 100644 --- a/tests/unit/plugins/irc/test-irc-server.cpp +++ b/tests/unit/plugins/irc/test-irc-server.cpp @@ -1,6 +1,4 @@ /* - * test-irc-server.cpp - test IRC protocol functions - * * SPDX-FileCopyrightText: 2020-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC protocol functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/irc/test-irc-tag.cpp b/tests/unit/plugins/irc/test-irc-tag.cpp index 8585e5f8c..d9b70968e 100644 --- a/tests/unit/plugins/irc/test-irc-tag.cpp +++ b/tests/unit/plugins/irc/test-irc-tag.cpp @@ -1,6 +1,4 @@ /* - * test-irc-tag.cpp - test IRC message tags functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test IRC message tags functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/logger/test-logger-backlog.cpp b/tests/unit/plugins/logger/test-logger-backlog.cpp index 868a8a29d..b45df5b4c 100644 --- a/tests/unit/plugins/logger/test-logger-backlog.cpp +++ b/tests/unit/plugins/logger/test-logger-backlog.cpp @@ -1,6 +1,4 @@ /* - * test-logger-backlog.cpp - test logger backlog functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test logger backlog functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/logger/test-logger-tail.cpp b/tests/unit/plugins/logger/test-logger-tail.cpp index 71f98dd1a..4969c1966 100644 --- a/tests/unit/plugins/logger/test-logger-tail.cpp +++ b/tests/unit/plugins/logger/test-logger-tail.cpp @@ -1,6 +1,4 @@ /* - * test-logger-tail.cpp - test logger tail functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test logger tail functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/logger/test-logger.cpp b/tests/unit/plugins/logger/test-logger.cpp index a6d93f30e..2a3a13449 100644 --- a/tests/unit/plugins/logger/test-logger.cpp +++ b/tests/unit/plugins/logger/test-logger.cpp @@ -1,6 +1,4 @@ /* - * test-logger.cpp - test logger functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test logger functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp b/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp index 636e0f0e6..edc425f74 100644 --- a/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp +++ b/tests/unit/plugins/relay/api/remote/test-relay-remote-event.cpp @@ -1,6 +1,4 @@ /* - * test-relay-remote-event.cpp - test event functions for relay remote - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test event functions for relay remote */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/relay/api/remote/test-relay-remote-network.cpp b/tests/unit/plugins/relay/api/remote/test-relay-remote-network.cpp index 227c0d9e8..0d11080fb 100644 --- a/tests/unit/plugins/relay/api/remote/test-relay-remote-network.cpp +++ b/tests/unit/plugins/relay/api/remote/test-relay-remote-network.cpp @@ -1,6 +1,4 @@ /* - * test-relay-remote-network.cpp - test network functions for relay remote - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test network functions for relay remote */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/relay/api/test-relay-api-msg.cpp b/tests/unit/plugins/relay/api/test-relay-api-msg.cpp index 0b648dda1..a89b820fb 100644 --- a/tests/unit/plugins/relay/api/test-relay-api-msg.cpp +++ b/tests/unit/plugins/relay/api/test-relay-api-msg.cpp @@ -1,6 +1,4 @@ /* - * test-relay-api-msg.cpp - test relay API protocol (messages) - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test relay API protocol (messages) */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/relay/api/test-relay-api-protocol.cpp b/tests/unit/plugins/relay/api/test-relay-api-protocol.cpp index 0cd0eca91..b0b8c5b3a 100644 --- a/tests/unit/plugins/relay/api/test-relay-api-protocol.cpp +++ b/tests/unit/plugins/relay/api/test-relay-api-protocol.cpp @@ -1,6 +1,4 @@ /* - * test-relay-api-protocol.cpp - test relay API protocol (protocol) - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test relay API protocol (protocol) */ + #include "CppUTest/TestHarness.h" #include "tests/tests-record.h" diff --git a/tests/unit/plugins/relay/api/test-relay-api.cpp b/tests/unit/plugins/relay/api/test-relay-api.cpp index 9071d0a41..50f9b78c0 100644 --- a/tests/unit/plugins/relay/api/test-relay-api.cpp +++ b/tests/unit/plugins/relay/api/test-relay-api.cpp @@ -1,6 +1,4 @@ /* - * test-relay-api.cpp - test relay API protocol (general functions) - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test relay API protocol (general functions) */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/relay/irc/test-relay-irc.cpp b/tests/unit/plugins/relay/irc/test-relay-irc.cpp index 80533c93f..b536f009c 100644 --- a/tests/unit/plugins/relay/irc/test-relay-irc.cpp +++ b/tests/unit/plugins/relay/irc/test-relay-irc.cpp @@ -1,6 +1,4 @@ /* - * test-relay-irc.cpp - test relay IRC protocol - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test relay IRC protocol */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/relay/test-relay-auth.cpp b/tests/unit/plugins/relay/test-relay-auth.cpp index d624d6a56..4ae4f83c9 100644 --- a/tests/unit/plugins/relay/test-relay-auth.cpp +++ b/tests/unit/plugins/relay/test-relay-auth.cpp @@ -1,6 +1,4 @@ /* - * test-relay-auth.cpp - test client authentication functions - * * SPDX-FileCopyrightText: 2020-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test client authentication functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/relay/test-relay-bar-item.cpp b/tests/unit/plugins/relay/test-relay-bar-item.cpp index 1fb42dec9..bcf7b1266 100644 --- a/tests/unit/plugins/relay/test-relay-bar-item.cpp +++ b/tests/unit/plugins/relay/test-relay-bar-item.cpp @@ -1,6 +1,4 @@ /* - * test-relay-bar-item.cpp - test relay bar item functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test relay bar item functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/relay/test-relay-http.cpp b/tests/unit/plugins/relay/test-relay-http.cpp index 7fd9c33d6..1a3686669 100644 --- a/tests/unit/plugins/relay/test-relay-http.cpp +++ b/tests/unit/plugins/relay/test-relay-http.cpp @@ -1,6 +1,4 @@ /* - * test-relay-http.cpp - test HTTP functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test HTTP functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/relay/test-relay-raw.cpp b/tests/unit/plugins/relay/test-relay-raw.cpp index 867acde81..4db3d334b 100644 --- a/tests/unit/plugins/relay/test-relay-raw.cpp +++ b/tests/unit/plugins/relay/test-relay-raw.cpp @@ -1,6 +1,4 @@ /* - * test-relay-raw.cpp - test raw messages functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test raw messages functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/relay/test-relay-remote.cpp b/tests/unit/plugins/relay/test-relay-remote.cpp index 5a15be604..2bdd1b395 100644 --- a/tests/unit/plugins/relay/test-relay-remote.cpp +++ b/tests/unit/plugins/relay/test-relay-remote.cpp @@ -1,6 +1,4 @@ /* - * test-relay-remote.cpp - test relay remote functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test relay remote functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/relay/test-relay-websocket.cpp b/tests/unit/plugins/relay/test-relay-websocket.cpp index 4dcdc6a26..4000032ae 100644 --- a/tests/unit/plugins/relay/test-relay-websocket.cpp +++ b/tests/unit/plugins/relay/test-relay-websocket.cpp @@ -1,6 +1,4 @@ /* - * test-relay-websocket.cpp - test websocket functions - * * SPDX-FileCopyrightText: 2024-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test websocket functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/test-plugin-api-info.cpp b/tests/unit/plugins/test-plugin-api-info.cpp index ebb460c6d..c4685633b 100644 --- a/tests/unit/plugins/test-plugin-api-info.cpp +++ b/tests/unit/plugins/test-plugin-api-info.cpp @@ -1,6 +1,4 @@ /* - * test-plugin-api-info.cpp - tests API info functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Tests API info functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/test-plugin-config.cpp b/tests/unit/plugins/test-plugin-config.cpp index b3ecca462..1252dd498 100644 --- a/tests/unit/plugins/test-plugin-config.cpp +++ b/tests/unit/plugins/test-plugin-config.cpp @@ -1,6 +1,4 @@ /* - * test-plugin-config.cpp - tests plugins config functions - * * SPDX-FileCopyrightText: 2023-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Tests plugins config functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/test-plugins.cpp b/tests/unit/plugins/test-plugins.cpp index ccec65864..0c779b102 100644 --- a/tests/unit/plugins/test-plugins.cpp +++ b/tests/unit/plugins/test-plugins.cpp @@ -1,6 +1,4 @@ /* - * test-plugins.cpp - generic tests on plugins - * * SPDX-FileCopyrightText: 2003-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Generic tests on plugins */ + #include "CppUTest/TestHarness.h" TEST_GROUP(Plugins) diff --git a/tests/unit/plugins/trigger/test-trigger-config.cpp b/tests/unit/plugins/trigger/test-trigger-config.cpp index b4f241b70..300583767 100644 --- a/tests/unit/plugins/trigger/test-trigger-config.cpp +++ b/tests/unit/plugins/trigger/test-trigger-config.cpp @@ -1,6 +1,4 @@ /* - * test-trigger-config.cpp - test trigger configuration functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test trigger configuration functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/trigger/test-trigger.cpp b/tests/unit/plugins/trigger/test-trigger.cpp index c29bb9e49..3fb9ded66 100644 --- a/tests/unit/plugins/trigger/test-trigger.cpp +++ b/tests/unit/plugins/trigger/test-trigger.cpp @@ -1,6 +1,4 @@ /* - * test-trigger.cpp - test trigger functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test trigger functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/typing/test-typing-status.cpp b/tests/unit/plugins/typing/test-typing-status.cpp index d5466ff17..c0cf8a578 100644 --- a/tests/unit/plugins/typing/test-typing-status.cpp +++ b/tests/unit/plugins/typing/test-typing-status.cpp @@ -1,6 +1,4 @@ /* - * test-typing-status.cpp - test typing status functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test typing status functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/typing/test-typing.cpp b/tests/unit/plugins/typing/test-typing.cpp index d4c821ab9..e7b8085bf 100644 --- a/tests/unit/plugins/typing/test-typing.cpp +++ b/tests/unit/plugins/typing/test-typing.cpp @@ -1,6 +1,4 @@ /* - * test-typing.cpp - test typing functions - * * SPDX-FileCopyrightText: 2021-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test typing functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h" diff --git a/tests/unit/plugins/xfer/test-xfer-file.cpp b/tests/unit/plugins/xfer/test-xfer-file.cpp index efb4166f8..704a4099d 100644 --- a/tests/unit/plugins/xfer/test-xfer-file.cpp +++ b/tests/unit/plugins/xfer/test-xfer-file.cpp @@ -1,6 +1,4 @@ /* - * test-xfer-file.cpp - test xfer file functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test xfer file functions */ + #include "CppUTest/TestHarness.h" extern "C" diff --git a/tests/unit/plugins/xfer/test-xfer-network.cpp b/tests/unit/plugins/xfer/test-xfer-network.cpp index 4a66e2759..a74bdc1b1 100644 --- a/tests/unit/plugins/xfer/test-xfer-network.cpp +++ b/tests/unit/plugins/xfer/test-xfer-network.cpp @@ -1,6 +1,4 @@ /* - * test-xfer-network.cpp - test xfer network functions - * * SPDX-FileCopyrightText: 2022-2025 Sébastien Helleu * * SPDX-License-Identifier: GPL-3.0-or-later @@ -21,6 +19,8 @@ * along with WeeChat. If not, see . */ +/* Test xfer network functions */ + #include "CppUTest/TestHarness.h" #include "tests/tests.h"