aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-11 21:07:32 +0100
committerCharles <sircharlesaze@gmail.com>2020-03-11 21:23:49 +0100
commitc128213daa677d548bfc2905496257fe4a4faf79 (patch)
treed087ceaeff3124ff539bc05d834d79f8187d5628 /include
parent3c3f1115f6e9a9b914e2dcbd796501ca7ce85342 (diff)
downloadlibft-c128213daa677d548bfc2905496257fe4a4faf79.tar.gz
libft-c128213daa677d548bfc2905496257fe4a4faf79.tar.bz2
libft-c128213daa677d548bfc2905496257fe4a4faf79.zip
ft_mem* and ft_strlen optimization
Diffstat (limited to 'include')
-rw-r--r--include/libft_mem.h1
-rw-r--r--include/libft_str.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/libft_mem.h b/include/libft_mem.h
index a15c020..fb52760 100644
--- a/include/libft_mem.h
+++ b/include/libft_mem.h
@@ -14,6 +14,7 @@
# define LIBFT_MEM_H
# include <stddef.h>
+# include <stdint.h>
# include "libft_types.h"
void ft_bzero(void *s, size_t n);
diff --git a/include/libft_str.h b/include/libft_str.h
index 582ef00..1f665b5 100644
--- a/include/libft_str.h
+++ b/include/libft_str.h
@@ -15,6 +15,7 @@
# include <stddef.h>
# include "libft_ctype.h"
+# include "libft_mem.h"
typedef enum
{