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 | 3 | TAILQ_FOREACH(team, &server->teams, entries) | |
15 | 2 | dprintf(client->fd, "tna %s\n", team->team->name); | |
16 | 1 | } | |
17 |