--- lbbs/src/menu_proc.c 2025/10/22 04:48:53 1.43 +++ lbbs/src/menu_proc.c 2025/11/04 13:49:51 1.44 @@ -1,18 +1,10 @@ -/*************************************************************************** - menu_proc.c - description - ------------------- - Copyright : (C) 2004-2025 by Leaflet - Email : leaflet@leafok.com - ***************************************************************************/ - -/*************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 3 of the License, or * - * (at your option) any later version. * - * * - ***************************************************************************/ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * menu_proc + * - handler functions of menu commands + * + * Copyright (C) 2004-2025 by Leaflet + */ #include "article_cache.h" #include "article_favor_display.h" @@ -44,7 +36,8 @@ int list_section(void *param) return REDRAW; } -typedef union exec_handler_t{ +typedef union exec_handler_t +{ void *p; int (*handler)(); } exec_handler;