summaryrefslogtreecommitdiff
path: root/libft.h
diff options
context:
space:
mode:
authorDominik Kaiser2024-03-10 13:37:45 +0100
committerDominik Kaiser2024-03-10 13:37:45 +0100
commit4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea (patch)
treee25f459959a69578322529aca6d2a02cb2d3dfcf /libft.h
parent3c90d29fe5bf9ba6da090cd59c8c139d269f8bd4 (diff)
downloadlibft-4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea.tar.gz
libft-4e19b82398e0cfaa3ca0b9f68772c88d103ff6ea.zip
Complete missing functions and add header
Diffstat (limited to 'libft.h')
-rw-r--r--libft.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/libft.h b/libft.h
index 8fa6fd4..e646b9e 100644
--- a/libft.h
+++ b/libft.h
@@ -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);