-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strnew.c
executable file
·24 lines (21 loc) · 1.05 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: jpinyot <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/13 17:50:42 by jpinyot #+# #+# */
/* Updated: 2017/11/13 18:57:23 by jpinyot ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strnew(size_t size)
{
char *str;
str = (char *)malloc(sizeof(char) * size + 1);
if (!str)
return (NULL);
ft_bzero(str, size + 1);
return (str);
}