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 /src/str | |
| 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 'src/str')
| -rw-r--r-- | src/str/ft_strcasecmp.c | 2 | ||||
| -rw-r--r-- | src/str/ft_strncasecmp.c | 2 | ||||
| -rw-r--r-- | src/str/ft_strncmp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/str/ft_strcasecmp.c b/src/str/ft_strcasecmp.c index 044e6de..6dd86eb 100644 --- a/src/str/ft_strcasecmp.c +++ b/src/str/ft_strcasecmp.c @@ -11,7 +11,7 @@ /* ************************************************************************** */ #include "libft_str.h" -#include "libft_types.h" +#include "libft_def.h" int ft_strcasecmp(const char *s1, const char *s2) { diff --git a/src/str/ft_strncasecmp.c b/src/str/ft_strncasecmp.c index aafdc8c..7153237 100644 --- a/src/str/ft_strncasecmp.c +++ b/src/str/ft_strncasecmp.c @@ -11,7 +11,7 @@ /* ************************************************************************** */ #include "libft.h" -#include "libft_types.h" +#include "libft_def.h" int ft_strncasecmp(const char *s1, const char *s2, size_t n) { diff --git a/src/str/ft_strncmp.c b/src/str/ft_strncmp.c index caa052b..d810e8c 100644 --- a/src/str/ft_strncmp.c +++ b/src/str/ft_strncmp.c @@ -11,7 +11,7 @@ /* ************************************************************************** */ #include "libft.h" -#include "libft_types.h" +#include "libft_def.h" int ft_strncmp(const char *s1, const char *s2, size_t n) { |
