diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-05-10 22:01:15 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-05-10 22:01:15 +0200 |
| commit | d3fb362c2e0b83cc9754a05ae5bc4a68a5f9269d (patch) | |
| tree | 0caac15f6a52282d83acffa3154fd007fc3db444 /include/libft_str.h | |
| parent | 02abc030a68cb2fdd2f21c96db830ec8cb9176ad (diff) | |
| download | libft-d3fb362c2e0b83cc9754a05ae5bc4a68a5f9269d.tar.gz libft-d3fb362c2e0b83cc9754a05ae5bc4a68a5f9269d.tar.bz2 libft-d3fb362c2e0b83cc9754a05ae5bc4a68a5f9269d.zip | |
Added ft_strtof, ft_atof, ft_vectobuf32, ft_split_len (not tested)
Diffstat (limited to 'include/libft_str.h')
| -rw-r--r-- | include/libft_str.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libft_str.h b/include/libft_str.h index 07a5fe0..83c4428 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/05/09 12:29:21 by charles ### ########.fr */ +/* Updated: 2020/05/10 21:05:21 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -64,6 +64,8 @@ int ft_strcount(char *str, char c); char *ft_itoa(int n); int ft_atoi_strict(const char *s); long ft_strtol(const char *s, char **endptr, int base); +float ft_strtof(const char *nptr, char **endptr); +float ft_atof(const char *nptr); int ft_strcasecmp(const char *s1, const char *s2); int ft_strncasecmp(const char *s1, const char *s2, size_t n); size_t ft_strspn(const char *s, const char *charset); |
