-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_utils5.c
81 lines (72 loc) · 999 Bytes
/
ft_utils5.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
73
74
75
76
77
78
79
80
81
#include "minishell.h"
void ft_putstr_fd(char *s, int fd)
{
int i;
i = 0;
if (s && fd)
{
while (s[i])
{
ft_putchar_fd(s[i], fd);
i++;
}
}
}
int ft_atoi(char *str)
{
unsigned int res;
unsigned int sign;
res = 0;
sign = 1;
while (*str == 32 || (*str >= 9 && *str <= 13))
str++;
if (*str == '+' || *str == '-')
{
if (*str == '-')
sign = sign * -1;
str++;
}
while (*str >= '0' && *str <= '9')
{
res = res * 10 + (*str - '0');
str++;
}
return (sign * res);
}
int ft_strncmp(char *s1, char *s2, int n)
{
int i;
i = 0;
while ((s1[i] || s2[i]) && i < n)
{
if (s1[i] != s2[i])
return ((unsigned char)s1[i] - (unsigned char)s2[i]);
i++;
}
return (0);
}
char ft_isdigit(int c)
{
if (c == 0)
return (0);
if (c >= '0' && c <= '9')
return (1);
return (0);
}
int ft_len_wspa(char *str)
{
int i;
int j;
i = 0;
j = 0;
if (str == NULL)
return (0);
while (str[i] == ' ' && str[i])
i++;
while (str[i])
{
i++;
j++;
}
return (j);
}