-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrings.c
133 lines (110 loc) · 1.92 KB
/
strings.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include "hsh.h"
/**
* _strlen - Function to get the length of a string
*
* @str: string to get length of
*
* Return: the length of the string
*/
int _strlen(const char *str)
{
int len = 0;
while (*str != '\0')
{
len++;
str++;
}
return (len);
}
/**
* _strcpy - a function that copies the string pointed to by src into dest
* @dest: pointer to be copied into
* @src: pointer to be copied from
* Return: dest
*/
char *_strcpy(char *dest, const char *src)
{
int i = 0;
while (src[i] != '\0')
{
dest[i] = src[i];
i++;
}
dest[i] = '\0';
return (dest);
}
/**
* _strcat - concatenates two strings.
* @dest: destination string.
* @src: source string
* Return: dest string
*/
char *_strcat(char *dest, const char *src)
{
int dest_len = 0, src_idx = 0;
while (dest[dest_len] != '\0')
{
dest_len++;
}
while (src[src_idx] != '\0')
{
dest[dest_len + src_idx] = src[src_idx];
src_idx++;
}
dest[dest_len + src_idx] = '\0';
return (dest);
}
/**
* _strncmp - compares the first n bytes of s1 and s2
* @s1: First string
* @s2: Second string
* @n: number of bytes to be compared
* Return: 0
*/
int _strncmp(const char *s1, const char *s2, size_t n)
{
size_t i = 0;
while (i < n)
{
if (s1[i] != s2[i])
{
/* cast to unsigned char for correct results in all cases */
return ((int)(unsigned char)s1[i] - (int)(unsigned char)s2[i]);
}
if ((s1[i] == '\0' || s2[i] == '\0'))
break;
i++;
}
return (0);
}
/**
* _strdup - Function to duplicate string
* @str: String to be duplicated
*
* Return: NULL if str is NULL, NULL if insufficient memory
* Pointer to str duplicate
*/
char *_strdup(const char *str)
{
int i, len = 0;
char *s;
if (str == NULL)
{
return (NULL);
}
while (str[len] != '\0')
{
len++;
}
s = malloc(sizeof(char) * (len + 1));
if (s == NULL)
{
return (NULL);
}
for (i = 0; i < len; i++)
{
s[i] = str[i];
}
s[len] = '\0';
return (s);
}