-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_utils.c
118 lines (103 loc) · 2.94 KB
/
get_next_line_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
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
118
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pandalaf <pandalaf@student.42wolfsburg. +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/26 18:42:54 by pandalaf #+# #+# */
/* Updated: 2022/08/26 18:42:54 by pandalaf ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#include <stddef.h>
#include <stdlib.h>
#include "get_next_line.h"
//Function determines length of the string (number of characters).
size_t ft_strlen(const char *str)
{
size_t i;
i = 0;
while (str[i] != '\0')
i++;
return (i);
}
/* Test | gcc -Wall -Werror -Wextra get_next_line_utils.c && ./a.out
#include <stdio.h>
#include <string.h>
int main(void)
{
char *f = "Hello World";
char *d = "";
printf("Test 1: %s, strlen: %lu,
ft_strlen: %lu\n", f, strlen(f), ft_strlen(f));
printf("Test 2: %s, strlen: %lu,
ft_strlen: %lu\n", d, strlen(d), ft_strlen(d));
return (0);
}
//*/
//Function searches for char and returns first location. 0 not found. 1 is 1st.
int ft_strsrch(char *str, int ch)
{
unsigned int i;
if (!str)
return (0);
i = 0;
while (str[i] != '\0')
{
if (str[i] == ch)
return (i + 1);
i++;
}
return (0);
}
/*Test strsrch
//gcc -Wall -Werror -Wextra get_next_line_utils.c && ./a.out
#include <stdio.h>
int main(void)
{
char *str = "Hello";
char ch = '3';
printf("Str: %s, Ch: %c, Out: %d\n", str, ch, ft_strsrch(str, ch));
return (0);
}
//*/
//Function joins two character strings, creates a new char string.
char *ft_strjoinmod(char *s1, char *s2)
{
unsigned char *ptr;
unsigned int ii[2];
if (!s1)
{
s1 = malloc(1 * sizeof(*s1));
s1[0] = '\0';
}
ptr = malloc((ft_strlen(s1) + ft_strlen(s2) + 1) * sizeof(*ptr));
if (!ptr)
return ((char *) 0);
ii[0] = -1;
while (s1[++ii[0]] != '\0')
ptr[ii[0]] = s1[ii[0]];
free(s1);
ii[1] = -1;
while (s2[++ii[1]] != '\0')
ptr[ii[0] + ii[1]] = s2[ii[1]];
ptr[ii[0] + ii[1]] = 0;
return ((char *) ptr);
}
/* Test | gcc -Wall -Werror -Wextra get_next_line_utils.c && ./a.out
//valgrind --leak-check=full ./a.out
#include <stdio.h>
#include <string.h>
int main(void)
{
char *s1 = strdup("You");
char s2[] = " and me";
char *join;
printf("Test: s1-%s, ", s1);
join = ft_strjoinmod(s1, s2);
printf("s2-%s, Out-%s\n", s2, join);
free(join);
return (0);
}
//*/