ft_strnew

This commit is contained in:
Tanguy MAZE 2018-04-06 18:46:05 +02:00
parent a6613be0ff
commit 689a103bb5
2 changed files with 21 additions and 2 deletions

View File

@ -6,7 +6,7 @@
# By: tmaze <marvin@42.fr> +#+ +:+ +#+ # # By: tmaze <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ # # +#+#+#+#+#+ +#+ #
# Created: 2018/04/04 10:51:59 by tmaze #+# #+# # # Created: 2018/04/04 10:51:59 by tmaze #+# #+# #
# Updated: 2018/04/06 18:24:39 by tmaze ### ########.fr # # Updated: 2018/04/06 18:39:44 by tmaze ### ########.fr #
# # # #
#******************************************************************************# #******************************************************************************#
@ -46,7 +46,8 @@ SRCS = \
ft_tolower.c \ ft_tolower.c \
\ \
ft_memalloc.c \ ft_memalloc.c \
ft_memdel.c ft_memdel.c \
ft_strnew.c
OBJS = $(SRCS:.c=.o) OBJS = $(SRCS:.c=.o)
INCLS = -I. INCLS = -I.

18
ft_strnew.c Normal file
View File

@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strnew.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/04/06 18:33:28 by tmaze #+# #+# */
/* Updated: 2018/04/06 18:43:32 by tmaze ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strnew(size_t size)
{
return ((char*)ft_memalloc(sizeof(char) * (size + 1)));
}