-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_utils.c
executable file
·73 lines (62 loc) · 1.45 KB
/
ft_utils.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: larmelli <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/02/25 17:07:48 by larmelli #+# #+# */
/* Updated: 2021/02/25 17:07:53 by larmelli ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_libftprintf.h"
int ft_isdigit(int c)
{
unsigned char x;
x = (unsigned char)c;
if (c >= '0' && c <= '9')
return (1);
return (0);
}
size_t ft_strlen(const char *s)
{
size_t i;
i = 0;
while (*s != 0)
{
i++;
s++;
}
return (i);
}
int ft_putstr(char *s)
{
int i;
if (!s)
return (0);
write(1, s, ft_strlen(s));
i = ft_strlen(s);
return (i);
}
int ft_print_zero(int n)
{
int i;
i = 0;
while (n--)
{
write(1, "0", 1);
i++;
}
return (i);
}
int ft_print_space(int n)
{
int i;
i = 0;
while (n--)
{
write(1, " ", 1);
i++;
}
return (i);
}