-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_realloc.c
30 lines (27 loc) · 1.16 KB
/
ft_realloc.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_realloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gmelisan <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/12/17 16:41:05 by gmelisan #+# #+# */
/* Updated: 2018/12/19 16:36:23 by gmelisan ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include "libft.h"
void *ft_realloc(void **ptr, size_t oldsize, size_t newsize)
{
void *ret;
ret = ft_memalloc(newsize);
if (!ret)
return (NULL);
if (ptr)
{
ft_memcpy(ret, *ptr, oldsize < newsize ? oldsize : newsize);
free(*ptr);
*ptr = ret;
}
return (ret);
}