remove debug print statement

This commit is contained in:
Willem Haffmans 2025-06-10 16:17:05 +02:00
parent c6105a859f
commit f933a58c2a

View File

@ -6,7 +6,7 @@
/* By: whaffman <whaffman@student.codam.nl> +#+ */ /* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */ /* +#+ */
/* Created: 2025/05/23 12:52:46 by whaffman #+# #+# */ /* Created: 2025/05/23 12:52:46 by whaffman #+# #+# */
/* Updated: 2025/05/23 14:07:39 by whaffman ######## odam.nl */ /* Updated: 2025/06/10 16:14:04 by whaffman ######## odam.nl */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -37,6 +37,5 @@ char *ft_strtok(char *str, const char *delim)
} }
else else
next += length; next += length;
ft_printf("next: %s\n", next);
return (start); return (start);
} }