blob: ea13f19326f5e8f8d6830856f310d51c95d82c4e (
plain)
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_nrealloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:43 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:06:43 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
#include <stddef.h>
#include <stdlib.h>
void
*ft_nrealloc(void *ptr, size_t oldsize, size_t newsize)
{
void *nptr;
if (!ptr)
{
if (!(ptr = malloc(newsize)))
return (NULL);
return (ptr);
}
else if (!newsize)
{
free(ptr);
return (NULL);
}
if (!(nptr = malloc(newsize)))
return (ptr);
ft_memcpy(nptr, ptr, oldsize);
free(ptr);
return (nptr);
}
|