-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathft_strnew.c
23 lines (20 loc) · 1.04 KB
/
ft_strnew.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: psprawka <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/09/21 19:31:53 by psprawka #+# #+# */
/* Updated: 2018/06/17 13:41:45 by psprawka ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strnew(size_t size)
{
char *tab;
if (!(tab = (char *)malloc(size + 1)))
return (NULL);
ft_memset(tab, '\0', size + 1);
return (tab);
}