-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrings1.c
82 lines (74 loc) · 1.23 KB
/
strings1.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
#include "shell.h"
/**
* _strcpy - funtion that copies a string
* @dest: pointer to the destination
* @src: pointer to the source
* Return: destination
*/
char *_strcpy(char *dest, char *src)
{
int a = 0;
if (dest == src || !src)
return (dest);
while (src[a])
{
dest[a] = src[a];
a++;
}
dest[a] = 0;
return (dest);
}
/**
* _strdup - function that duplicates a string
* @str: pointer to string
* Return: pointer of string
*/
char *_strdup(const char *str)
{
int length = 0;
char *ret;
if (!str)
return (NULL);
while (*str++)
length++;
ret = malloc(sizeof(char) * (length + 1));
if (ret == NULL)
return (NULL);
for (length++; length--;)
ret[length] = *--str;
return (ret);
}
/**
*_puts - function that prints an input string
*@str: pointer to string
* Return: void
*/
void _puts(char *str)
{
int a = 0;
if (!str)
return;
while (str[a] != '\0')
{
_putchar(str[a]);
a++;
}
}
/**
* _putchar - function that writes a character to stdout
* @c: character
* Return: 1 if success, -1 if error
*/
int _putchar(char c)
{
static int a;
static char buff[WRITE_BUFF_SIZE];
if (c == BUFF_FLUSH || a >= WRITE_BUFF_SIZE)
{
write(1, buff, a);
a = 0;
}
if (c != BUFF_FLUSH)
buff[a++] = c;
return (1);
}