diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-04-03 07:19:25 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-04-03 07:19:25 +0200 |
| commit | d2feec1f97e9f8f201e56ad33662bb663c328a0a (patch) | |
| tree | f97690082352bb1752d867d66f21a7bee1ef126c /include/libft_mem.h | |
| parent | 948c0953527fe3bef28904b38a16a9e4342e7e98 (diff) | |
| download | libft-d2feec1f97e9f8f201e56ad33662bb663c328a0a.tar.gz libft-d2feec1f97e9f8f201e56ad33662bb663c328a0a.tar.bz2 libft-d2feec1f97e9f8f201e56ad33662bb663c328a0a.zip | |
Changing hash table del function to regular one with a first order internal function, removing a few typedef to instead use standard types
Diffstat (limited to 'include/libft_mem.h')
| -rw-r--r-- | include/libft_mem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libft_mem.h b/include/libft_mem.h index 37c072e..26b4ccd 100644 --- a/include/libft_mem.h +++ b/include/libft_mem.h @@ -14,7 +14,7 @@ # define LIBFT_MEM_H # include <stddef.h> -# include "libft_types.h" +# include "libft_def.h" void ft_bzero(void *s, size_t n); void *ft_memset(void *s, int c, size_t n); |
