-
Notifications
You must be signed in to change notification settings - Fork 1
/
string_funcs.c
113 lines (93 loc) · 1.36 KB
/
string_funcs.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
#include "main.h"
/**
* _strcmp - compares two strings
* @s1: pointer 1
* @s2: pointer 2
* Return: result
*/
int _strcmp(char *s1, char *s2)
{
while (*s1 && *s2)
{
if (*s1 != *s2)
return (*s1 - *s2);
s1++;
s2++;
}
return (0);
}
/**
* _strcpy - function that copies the string pointed to by src
* @dest: pointer
* @src: ponter
* Return: @dest
*/
char *_strcpy(char *dest, char *src)
{
char *c = dest;
while (*src != '\0')
{
*dest = *src;
dest++;
src++;
}
*dest = '\0';
return (c);
}
/**
* _split - split string
* @str: string
* @sep: separator
* Return: divided path
*/
char **_split(char *str, char *sep)
{
char *aux, **split_str;
int i = 0;
aux = strtok(str, sep);
split_str = (char **)_calloc(100, sizeof(char *));
if (!split_str)
{
free(split_str);
return (NULL);
}
while (aux)
{
split_str[i] = aux;
aux = strtok(NULL, sep);
i++;
}
return (split_str);
}
/**
* _strcat - function that concatenates two strings
* @dest: string
* @src: string
* Return: @dest
*/
char *_strcat(char *dest, char *src)
{
int a, b;
for (a = 0; dest[a] != '\0'; a += 1)
{}
for (b = 0; src[b] != '\0'; b += 1)
{
dest[a] = src[b];
a++;
}
dest[a] = '\0';
return (dest);
}
/**
* _strlen - string length
* @s: string
* Return: result
*
*/
int _strlen(char *s)
{
int i = 0;
while (s[i] != '\0')
i++;
return (i);
}