-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strnew.c
21 lines (18 loc) · 1012 Bytes
/
ft_strnew.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nvienot <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/15 22:06:55 by nvienot #+# #+# */
/* Updated: 2018/11/15 23:41:50 by nvienot ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strnew(size_t size)
{
char *s;
s = ft_memalloc(sizeof(char) * size + 1);
return (s);
}