From 0070587f4d1830d57e64a3158c7f3dfdf0103fd5 Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Fri, 24 Mar 2023 23:17:09 +0100 Subject: [PATCH] Better log message --- ex00/ft_strcpy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ex00/ft_strcpy.c b/ex00/ft_strcpy.c index 921099a..cac0ee3 100644 --- a/ex00/ft_strcpy.c +++ b/ex00/ft_strcpy.c @@ -6,7 +6,7 @@ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/19 05:59:56 by tischmid #+# #+# */ -/* Updated: 2023/03/24 01:29:58 by tischmid ### ########.fr */ +/* Updated: 2023/03/24 23:17:01 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ @@ -34,7 +34,7 @@ int main(void) for (int j = 0; j < arrlen; ++j) { - printf("####### Element == '%s' #######\n", teststrings[j]); + printf("####### buf = '|' * 10, src == '%s' #######\n", teststrings[j]); ft_strcpy(buf, teststrings[j]); for (int i = 0; i < BUFSIZE; ++i) printf((buf[i] >= 32 && buf[i] <= 126) ? "%c\n" : "0x%x\n", buf[i]);