diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-04-04 15:58:24 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-04-04 15:58:24 +0200 |
| commit | 51b845a6a202b50966f50e166cfb11bcbdccbe33 (patch) | |
| tree | 35658c668ab4aa9214f311b209996c52fc8030e0 /include/libft_str.h | |
| parent | 636c3ff6b600c291a40877ac52d8b0a1a58b9b79 (diff) | |
| download | libft-51b845a6a202b50966f50e166cfb11bcbdccbe33.tar.gz libft-51b845a6a202b50966f50e166cfb11bcbdccbe33.tar.bz2 libft-51b845a6a202b50966f50e166cfb11bcbdccbe33.zip | |
Added ft_strsjoin, ft_strsjoinf, ft_compar_str, ft_vecsort, ft_vecpush_safe
Diffstat (limited to 'include/libft_str.h')
| -rw-r--r-- | include/libft_str.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/libft_str.h b/include/libft_str.h index 1b0703f..2b105bf 100644 --- a/include/libft_str.h +++ b/include/libft_str.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/31 10:39:22 by cacharle #+# #+# */ -/* Updated: 2020/04/02 23:45:42 by charles ### ########.fr */ +/* Updated: 2020/04/04 14:41:46 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -16,6 +16,7 @@ # include <stddef.h> # include <stdbool.h> # include "libft_ctype.h" +# include "libft_util.h" typedef enum { @@ -82,6 +83,13 @@ char *ft_strtoupper(char *s); bool ft_fnmatch(const char *pattern, const char *string); /* +** NULL terminated string array +*/ + +char *ft_strsjoin(char **strs, char *delim); +char *ft_strsjoinf(char **strs, char *delim); + +/* ** bloat ? */ |
