blob: 96d5ad15195e37ec9097d1e041b430becabc3648 (
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
39
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_nrealloc.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2020/01/09 15:58:24 by rbousset #+# ## ## #+# */
/* Updated: 2020/01/09 15:58:25 by rbousset ### #+. /#+ ###.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);
}
|