summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_memccpy.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libft/src/ft_memccpy.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/libft/src/ft_memccpy.c b/libft/src/ft_memccpy.c
index 70f8226..6f62231 100644
--- a/libft/src/ft_memccpy.c
+++ b/libft/src/ft_memccpy.c
@@ -11,21 +11,19 @@
/* ************************************************************************** */
#include <stddef.h>
-#include <stdio.h>
-void
- *ft_memccpy(void *dst, const void *src, int c, size_t n)
+void *ft_memccpy(void *dst, const void *src, int c, size_t n)
{
unsigned char *dst_ptr;
const unsigned char *src_ptr;
dst_ptr = (unsigned char*)dst;
src_ptr = (unsigned char*)src;
- if (!*dst_ptr && !*src_ptr && n)
+ if (*dst_ptr == '\0' && *src_ptr == '\0' && n != 0)
return (NULL);
- if (n)
+ if (n != 0)
{
- while (n)
+ while (n != 0)
{
if ((*dst_ptr++ = *src_ptr++) == (unsigned char)c)
return (dst_ptr);