diff --git a/libft/Makefile b/libft/Makefile index 3e8c47af..30997d1e 100644 --- a/libft/Makefile +++ b/libft/Makefile @@ -204,7 +204,14 @@ sys/open_access.c\ sys/open_new.c\ time/ft_mytime_free.c\ time/ft_mytime_get.c\ -time/ft_time_isrecent.c +time/ft_time_isrecent.c\ +htb/ft_hash_string.c\ +htb/hashtab_init.c\ +htb/hashtab_insert.c\ +htb/hashtab_lookup.c\ +htb/hashtab_remove.c\ +htb/hashtab_destroy.c\ +htb/hashtab_print.c\ SRCS = $(addprefix $(SRC_DIR), $(SRC_BASE)) OBJS = $(addprefix $(OBJ_DIR), $(SRC_BASE:.c=.o)) diff --git a/libft/includes/libft.h b/libft/includes/libft.h index 7e2bd5ed..9d2fd2a4 100644 --- a/libft/includes/libft.h +++ b/libft/includes/libft.h @@ -6,7 +6,7 @@ /* By: jhalford +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/07 13:49:04 by jhalford #+# #+# */ -/* Updated: 2017/04/03 16:51:25 by jhalford ### ########.fr */ +/* Updated: 2017/05/16 17:47:18 by ariard ### ########.fr */ /* */ /* ************************************************************************** */ @@ -28,6 +28,7 @@ # include "lst.h" # include "dlst.h" # include "btree.h" +# include "hashtab.h" # include "str.h" # include "sstr.h"