-
Notifications
You must be signed in to change notification settings - Fork 0
/
strutils.c
117 lines (106 loc) · 2.24 KB
/
strutils.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* strutils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: danimart <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/06 11:08:07 by danimart #+# #+# */
/* Updated: 2022/05/07 14:28:15 by danimart ### ########.fr */
/* */
/* ************************************************************************** */
#include "so_long.h"
int ft_strlen(char *str, int ignore_new_line)
{
int i;
int res;
i = 0;
res = 0;
while (str && str[i] != '\0')
{
if ((ignore_new_line == 1 && str[i] != '\n') || ignore_new_line != 1)
res++;
i++;
}
return (res);
}
char *ft_strdup(char *s)
{
char *str;
int i;
i = 0;
str = (char *) malloc((ft_strlen(s, 0) + 1) * sizeof(char));
if (!s || !str)
return (NULL);
while (s[i])
{
str[i] = s[i];
i++;
}
str[i] = '\0';
return (str);
}
int ft_strchr(char *s, char ch)
{
int i;
i = 0;
while (s && s[i])
{
if (s[i] == ch)
return (i);
i++;
}
return (-1);
}
char *ft_strjoin(char *s1, char *s2)
{
char *str;
int i;
int j;
if (!s1 || !s2)
return (NULL);
str = (char *) malloc((ft_strlen(s1, 0) + ft_strlen(s2, 0) + 1) \
* sizeof(char));
if (!str)
return (NULL);
i = 0;
j = 0;
while (s1[i])
{
str[i + j] = s1[i];
i++;
}
while (s2[j])
{
str[i + j] = s2[j];
j++;
}
str[i + j] = '\0';
free(s1);
return (str);
}
char *ft_substr(char *s, int start, int len)
{
char *str;
int i;
int j;
if (!s)
return (NULL);
if (start > ft_strlen(s, 0))
return (ft_strdup(""));
j = ft_strlen(&s[start], 0);
if (j < len)
len = j;
str = (char *) malloc((len + 1) * sizeof(char));
if (!str)
return (NULL);
i = 0;
while (i < len && s[start])
{
str[i] = s[start];
start++;
i++;
}
str[i] = '\0';
return (str);
}