-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc1.c
109 lines (88 loc) · 1.64 KB
/
misc1.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
#include "main.h"
/**
* _strcmp - Compares two strings.
* @s1: First string.
* @s2: Second string.
*
* Return: Integer less than, equal to, or greater than zero
* if s1 is found to be less than, equal to, or greater than s2.
*/
int _strcmp(char *s1, char *s2)
{
int i = 0;
int len1 = _strlen(s1);
int len2 = _strlen(s2);
int len = len1;
if (len1 > len2)
len = len2;
while (i <= len)
{
if (s1[i] > s2[i])
return (1);
if (s1[i] < s2[i])
return (-1);
i++;
}
return (0);
}
/**
* _strlen - Computes the length of a string.
* @s: String.
*
* Return: Length of the string.
*/
int _strlen(char *s)
{
int i;
if (s == NULL)
return (0);
for (i = 0; s[i] != '\0'; i++)
{
}
return (i);
}
/**
* _strdup - Duplicates a string.
* @s: String to be duplicated.
*
* Return: Pointer to the newly allocated duplicated string.
*/
char *_strdup(char *s)
{
char *str;
if (s == NULL)
return (NULL);
str = malloc(sizeof(char) * _strlen(s) + 1);
if (str == NULL)
return (NULL);
_strcpy(str, s);
return (str);
}
/**
* _strcpy - Copies a string from source to destination.
* @dst: Destination string.
* @src: Source string.
*
* Return: Pointer to the destination string.
*/
char *_strcpy(char *dst, char *src)
{
int i;
if (src == NULL)
return (NULL);
for (i = 0; i <= _strlen(src); i++)
dst[i] = src[i];
return (dst);
}
/**
* _strcat - Concatenates two strings.
* @dst: Destination string to which the source is appended.
* @src: Source string to be appended.
*
* Return: Pointer to the concatenated string (dst).
*/
char *_strcat(char *dst, char *src)
{
_strcpy(dst + _strlen(dst), src);
return (dst);
}