aboutsummaryrefslogtreecommitdiff
path: root/include/ft_containers.hpp
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-01 10:37:15 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-01 10:37:15 +0100
commit7af930f2242f933f79dfbb4ddc84bfd532069556 (patch)
treebc24aae2b8f8f446bdfbe83f56336a7c6d7a98db /include/ft_containers.hpp
parent6e191a07bbc57d73152ba886b6f76f694a97e525 (diff)
downloadft_containers-7af930f2242f933f79dfbb4ddc84bfd532069556.tar.gz
ft_containers-7af930f2242f933f79dfbb4ddc84bfd532069556.tar.bz2
ft_containers-7af930f2242f933f79dfbb4ddc84bfd532069556.zip
Basic list methods
Diffstat (limited to 'include/ft_containers.hpp')
-rw-r--r--include/ft_containers.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/ft_containers.hpp b/include/ft_containers.hpp
new file mode 100644
index 0000000..76637ac
--- /dev/null
+++ b/include/ft_containers.hpp
@@ -0,0 +1,22 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_containers.hpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/01 10:09:01 by cacharle #+# #+# */
+/* Updated: 2020/02/01 10:09:50 by cacharle ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef FT_CONTAINERS_HPP
+# define FT_CONTAINERS_HPP
+
+# include <iostream>
+
+# include "List.hpp"
+
+void test_list_base();
+
+#endif