From 7af930f2242f933f79dfbb4ddc84bfd532069556 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 1 Feb 2020 10:37:15 +0100 Subject: Basic list methods --- include/ft_containers.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 include/ft_containers.hpp (limited to 'include/ft_containers.hpp') 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 +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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 + +# include "List.hpp" + +void test_list_base(); + +#endif -- cgit