-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putmem.c
28 lines (25 loc) · 1.08 KB
/
ft_putmem.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putmem.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: erli <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/08 16:39:13 by erli #+# #+# */
/* Updated: 2018/11/08 16:42:21 by erli ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
#include <string.h>
void ft_putmem(const void *ptr, size_t n)
{
size_t i;
unsigned char *str;
i = 0;
str = (unsigned char *)ptr;
while (i < n)
{
write(1, str + i, 1);
i++;
}
}