-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_init_clients.c
More file actions
20 lines (18 loc) · 1022 Bytes
/
ft_init_clients.c
File metadata and controls
20 lines (18 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_init_clients.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: davdiaz- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/27 16:12:09 by davdiaz- #+# #+# */
/* Updated: 2025/05/27 16:12:27 by davdiaz- ### ########.fr */
/* */
/* ************************************************************************** */
#include "server.h"
void ft_init_clients(void)
{
g_server.stop = 0;
ft_memset(g_server.str_bits, 0, 8);
g_server.index = 0;
}