Coverage report for server


src/
File: src/commands/gui/tna.c
Date: 2024-06-25 10:57:05
Lines:
4/4
100.0%
Functions:
1/1
100.0%
Branches:
2/2
100.0%

Line Branch Exec Source
1 /*
2 ** EPITECH PROJECT, 2024
3 ** zappy
4 ** File description:
5 ** tna.c
6 */
7
8 #include "server.h"
9
10 1 void tna(client_t *client, server_t *server)
11 {
12 team_list_t *team;
13
14
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 times.
3 TAILQ_FOREACH(team, &server->teams, entries)
15 2 dprintf(client->fd, "tna %s\n", team->team->name);
16 1 }
17