-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strnew.c
24 lines (21 loc) · 1.08 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
24
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mschumac <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/06/11 23:44:09 by mschumac #+# #+# */
/* Updated: 2017/06/25 23:49:43 by mschumac ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strnew(size_t size)
{
char *new_string;
new_string = (char*)malloc(size + 1);
if (new_string == NULL)
return (NULL);
ft_memset(new_string, '\0', size + 1);
return (new_string);
}