summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_nrealloc.c
blob: 82975d1b89fb92683235ea809be3c8f218b5b9a8 (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)
	{
		ft_memdel((void*)&ptr);
		return (NULL);
	}
	if (!(nptr = malloc(newsize)))
		return (ptr);
	ft_memcpy(nptr, ptr, oldsize);
	ft_memdel((void*)&ptr);
	return (nptr);
}