diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-27 18:07:57 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-28 12:24:57 +0100 |
| commit | 915f1b888cf9c05e4b61321f84ac045eacd8ddd1 (patch) | |
| tree | 96c1a6b4833073e8035835feb9c5a6c0d163acc1 /include | |
| parent | 8131a5d26441c5152ab151b4bb49b561e5ca6e81 (diff) | |
| download | libft-915f1b888cf9c05e4b61321f84ac045eacd8ddd1.tar.gz libft-915f1b888cf9c05e4b61321f84ac045eacd8ddd1.tar.bz2 libft-915f1b888cf9c05e4b61321f84ac045eacd8ddd1.zip | |
Added ft_lstlfind,ft_lstlsearch and ft_split_destroy
Diffstat (limited to 'include')
| -rw-r--r-- | include/libft_lst.h | 2 | ||||
| -rw-r--r-- | include/libft_util.h | 20 |
2 files changed, 21 insertions, 1 deletions
diff --git a/include/libft_lst.h b/include/libft_lst.h index 2b4321c..5669979 100644 --- a/include/libft_lst.h +++ b/include/libft_lst.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/31 10:36:39 by cacharle #+# #+# */ -/* Updated: 2020/02/28 12:09:21 by cacharle ### ########.fr */ +/* Updated: 2020/02/28 12:23:31 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ 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 |
