-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strnew.c
26 lines (23 loc) · 1.06 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
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lbopp <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/06 15:46:29 by lbopp #+# #+# */
/* Updated: 2016/11/12 15:05:18 by lbopp ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strnew(size_t size)
{
char *s;
s = (char*)malloc(sizeof(char) * (size + 1));
if (s && size < 2147483647)
{
ft_bzero(s, size + 1);
return (s);
}
return (0);
}