Skip to content

Commit a5bebcb

Browse files
committed
Move description of C files below the copyright and license
1 parent b1d1546 commit a5bebcb

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

lib/command.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* command.c - build and send commands from client to WeeChat
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Build and send commands from client to WeeChat */
23+
2424
#include <stdlib.h>
2525
#include <unistd.h>
2626
#include <stdio.h>

lib/message.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* message.c - build and send binary messages from WeeChat to client
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Build and send binary messages from WeeChat to client */
23+
2424
#include <stdlib.h>
2525
#include <unistd.h>
2626
#include <stdio.h>

lib/object.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* object.c - create objects for messages sent to client and parsed messages
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Create objects for messages sent to client and parsed messages */
23+
2424
#include <stdlib.h>
2525
#include <string.h>
2626

lib/parse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* parse.c - parse binary messages sent by WeeChat
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Parse binary messages sent by WeeChat */
23+
2424
#include <stdlib.h>
2525
#include <stdio.h>
2626
#include <stdint.h>

lib/session.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* session.c - session functions of WeeChat Relay lib
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Session functions of WeeChat Relay lib */
23+
2424
#include <unistd.h>
2525
#include <stdlib.h>
2626
#include <string.h>

src/cli.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* cli.c - command line tool to test WeeChat relay connection
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Command line tool to test WeeChat relay connection */
23+
2424
#include <stdlib.h>
2525
#include <unistd.h>
2626
#include <stdio.h>

src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* main.c - main function for WeeChat relay command line tool
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Main function for WeeChat relay command line tool */
23+
2424
#include "cli.h"
2525

2626

src/message.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* relay-message.c - message functions for WeeChat relay command line tool
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Message functions for WeeChat relay command line tool */
23+
2424
#include <stdlib.h>
2525
#include <stdio.h>
2626
#include <stdarg.h>

src/network.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* relay-network.c - network functions for WeeChat relay command line tool
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Network functions for WeeChat relay command line tool */
23+
2424
#include <stdlib.h>
2525
#include <unistd.h>
2626
#include <stdio.h>

src/util.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
* util.c - utility functions for WeeChat relay command line tool
3-
*
42
* SPDX-FileCopyrightText: 2019-2025 Sébastien Helleu <[email protected]>
53
*
64
* SPDX-License-Identifier: GPL-3.0-or-later
@@ -21,6 +19,8 @@
2119
* along with WeeChat Relay. If not, see <https://www.gnu.org/licenses/>.
2220
*/
2321

22+
/* Utility functions for WeeChat relay command line tool */
23+
2424
#include <stdlib.h>
2525
#include <stdio.h>
2626
#include <string.h>

0 commit comments

Comments
 (0)