-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.c
72 lines (65 loc) · 1.65 KB
/
client.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* client.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gemartin <gemartin@student.42barc...> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/04 12:05:57 by gemartin #+# #+# */
/* Updated: 2022/03/07 18:21:06 by marvin ### ########.fr */
/* */
/* ************************************************************************** */
#include<signal.h>
#include<unistd.h>
#include<stdio.h>
#include<sys/types.h>
#include <limits.h>
int ft_atoi(const char *str)
{
int i;
long long int nbr;
nbr = 0;
i = 0;
while (str[i] >= '0' && str[i] <= '9')
{
nbr = nbr * 10 + str[i] - '0';
i++;
if (nbr > INT_MAX)
return (-1);
}
return (nbr);
}
void conv_bin(char *s, int pidserv)
{
int i;
int base;
char letra;
i = 0;
while (s[i])
{
base = 128;
letra = s[i];
while (base > 0)
{
if (letra >= base)
{
kill(pidserv, SIGUSR1);
letra = letra - base;
}
else
kill(pidserv, SIGUSR2);
base = base / 2;
usleep(100);
}
i++;
}
}
int main(int argc, char **argv)
{
int pidserv;
if (argc != 3)
return (-1);
pidserv = ft_atoi(argv[1]);
conv_bin(argv[2], pidserv);
return (0);
}