aboutsummaryrefslogtreecommitdiff
path: root/include/libft_util.h
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-04-01 21:51:51 +0200
committerCharles <sircharlesaze@gmail.com>2020-04-01 21:58:05 +0200
commit65c5d5157e890e9f9445a94fb2d7f660e5492d8e (patch)
tree78613f26bdc531104c3e32d76ffcaf3c2f7013f5 /include/libft_util.h
parentc128213daa677d548bfc2905496257fe4a4faf79 (diff)
parenta1675f56b35f5521a91851bae8ca650706374ae6 (diff)
downloadlibft-65c5d5157e890e9f9445a94fb2d7f660e5492d8e.tar.gz
libft-65c5d5157e890e9f9445a94fb2d7f660e5492d8e.tar.bz2
libft-65c5d5157e890e9f9445a94fb2d7f660e5492d8e.zip
Merge branch 'minishell'
Diffstat (limited to 'include/libft_util.h')
-rw-r--r--include/libft_util.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/libft_util.h b/include/libft_util.h
new file mode 100644
index 0000000..7a9e056
--- /dev/null
+++ b/include/libft_util.h
@@ -0,0 +1,20 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* libft_util.h :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/27 17:51:36 by cacharle #+# #+# */
+/* Updated: 2020/02/27 17:52:16 by cacharle ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef LIBFT_UTIL_H
+# define LIBFT_UTIL_H
+
+# include <stdlib.h>
+
+void *ft_split_destroy(char **strs);
+
+#endif