--- lbbs/include/bbs_main.h 2025/05/06 05:31:26 1.2 +++ lbbs/include/bbs_main.h 2026/01/03 10:27:14 1.5 @@ -1,23 +1,14 @@ -/*************************************************************************** - bbs_main.h - description - ------------------- - Copyright : (C) 2004-2025 by Leaflet - Email : leaflet@leafok.com - ***************************************************************************/ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +/* + * bbs_main + * - entry and major procedures of user interactive access + * + * Copyright (C) 2004-2026 Leaflet + */ -/*************************************************************************** - * * - * 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. * - * * - ***************************************************************************/ +#ifndef _BBS_MAIN_H_ +#define _BBS_MAIN_H_ - #ifndef _BBS_MAIN_H_ - #define _BBS_MAIN_H_ - - extern int bbs_main(); - - #endif //_BBS_MAIN_H_ - \ No newline at end of file +extern int bbs_main(); + +#endif //_BBS_MAIN_H_