blob: b80e327d3f5b35e2a7730646c848577a38507b49 (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/08 08:52:59 by cacharle #+# #+# */
/* Updated: 2019/10/10 16:39:08 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
int find_newline(char *str)
{
int i;
i = -1;
while (str[++i])
if (str[i] == '\n')
return (i);
return (-1);
}
char *ft_strncpy(char *dest, const char *src, int n)
{
int i;
i = 0;
while (src[i] && i < n)
{
dest[i] = src[i];
i++;
}
while (i < n)
dest[i++] = '\0';
return (dest);
}
int ft_strlen(char *str)
{
int counter;
counter = 0;
while (str[counter])
counter++;
return (counter);
}
|