summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_nstr.c
blob: 8919e6453a5ecbce7a6a523d9875b6d0972cae76 (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
/* ************************************************************************** */
/*                                                          LE - /            */
/*                                                              /             */
/*   ft_nstr.c                                        .::    .:/ .      .::   */
/*                                                 +:+:+   +:    +:  +:+:+    */
/*   By: rbousset <marvin@le-101.fr>                +:+   +:    +:    +:+     */
/*                                                 #+#   #+    #+    #+#      */
/*   Created: 2019/12/07 04:23:30 by rbousset     #+#   ##    ##    #+#       */
/*   Updated: 2019/12/07 04:23:32 by rbousset    ###    #+. /#+    ###.fr     */
/*                                                         /                  */
/*                                                        /                   */
/* ************************************************************************** */

#include <stdlib.h>
#include <stddef.h>

char
	*ft_nstr(size_t size)
{
	char		*str;
	size_t		i;

	i = 0;
	size += 1;
	if (!(str = (char*)malloc((size) * sizeof(char))))
		return (NULL);
	while (i < size)
	{
		str[i] = '\0';
		i++;
	}
	return (str);
}