aboutsummaryrefslogtreecommitdiff
path: root/src/str/ft_strnew.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-05-11 16:14:38 +0200
committerCharles <sircharlesaze@gmail.com>2020-05-11 16:14:38 +0200
commitb9f000a80cbba38b8f21c9737a42f07573ec7b91 (patch)
tree7068e7188dab0a710ae79d71800b329ab655e3eb /src/str/ft_strnew.c
parenta4b9cda7d6733f2b077f8586e3b3e69351e7dfba (diff)
downloadlibft-b9f000a80cbba38b8f21c9737a42f07573ec7b91.tar.gz
libft-b9f000a80cbba38b8f21c9737a42f07573ec7b91.tar.bz2
libft-b9f000a80cbba38b8f21c9737a42f07573ec7b91.zip
Moved util/ft_split* in str, Added ft_memjoin and ft_memjoinf1, Modified ft_getfile so that it can read non-ascii file
Diffstat (limited to 'src/str/ft_strnew.c')
-rw-r--r--src/str/ft_strnew.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/str/ft_strnew.c b/src/str/ft_strnew.c
index 1bca6d5..f0d2221 100644
--- a/src/str/ft_strnew.c
+++ b/src/str/ft_strnew.c
@@ -6,13 +6,26 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/07 10:17:34 by cacharle #+# #+# */
-/* Updated: 2019/11/20 03:16:14 by cacharle ### ########.fr */
+/* Updated: 2020/05/11 15:28:15 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
-char *ft_strnew(size_t size)
+/*
+** \brief Create a new null-terminated string
+** \param len String length
+** \return Allocated string or NULL is allocation failed
+** \note This implementation doesn't follow the subject
+** because zeroing every byte is too inefficient
+*/
+
+char *ft_strnew(size_t len)
{
- return ((char*)ft_calloc(size + 1, sizeof(char)));
+ char *s;
+
+ if ((s = (char*)malloc(sizeof(char) * (len + 1))) == NULL)
+ return (NULL);
+ s[len] = '\0';
+ return (s);
}