diff options
| author | Dominik Kaiser | 2024-03-10 13:37:45 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2024-03-10 13:37:45 +0100 |
| commit | 4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea (patch) | |
| tree | e25f459959a69578322529aca6d2a02cb2d3dfcf /libft.h | |
| parent | 3c90d29fe5bf9ba6da090cd59c8c139d269f8bd4 (diff) | |
| download | libft-4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea.tar.gz libft-4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea.zip | |
Complete missing functions and add header
Diffstat (limited to 'libft.h')
| -rw-r--r-- | libft.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -6,12 +6,16 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/03/06 21:38:24 by dkaiser #+# #+# */ -/* Updated: 2024/03/07 16:23:00 by dkaiser ### ########.fr */ +/* Updated: 2024/03/10 13:26:25 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ -#ifndef LIBFT_H_ -# define LIBFT_H_ +#ifndef LIBFT_H +# define LIBFT_H + +# include <stdlib.h> +# include <string.h> +# include <unistd.h> int ft_isalpha(int c); int ft_isdigit(int c); |
