aboutsummaryrefslogtreecommitdiff
path: root/include/libft_str.h
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-08-01 19:29:33 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-08-01 19:31:57 +0200
commitee32953ea79616e72f5428cdf40c834714a891c9 (patch)
treea2752a59225f06cb470ffde40c7bbe50a6f25a8d /include/libft_str.h
parentca68aa1e6fca81213d19431439ad0b31863fe10c (diff)
downloadlibft-ee32953ea79616e72f5428cdf40c834714a891c9.tar.gz
libft-ee32953ea79616e72f5428cdf40c834714a891c9.tar.bz2
libft-ee32953ea79616e72f5428cdf40c834714a891c9.zip
Added ft_realloc, enabled ft_strnew
Diffstat (limited to 'include/libft_str.h')
-rw-r--r--include/libft_str.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libft_str.h b/include/libft_str.h
index 582ef00..fca5fbc 100644
--- a/include/libft_str.h
+++ b/include/libft_str.h
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/31 10:39:22 by cacharle #+# #+# */
-/* Updated: 2020/02/14 03:45:15 by cacharle ### ########.fr */
+/* Updated: 2020/08/01 18:55:31 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -72,13 +72,13 @@ int ft_strequ(char const *s1, char const *s2);
int ft_strnequ(char const *s1, char const *s2, size_t n);
char *ft_strtolower(char *s);
char *ft_strtoupper(char *s);
+char *ft_strnew(size_t size);
/*
** bloat ?
*/
/*
-** char *ft_strnew(size_t size);
** void ft_strdel(char **as);
** void ft_strclr(char *s);
*/