Better log message
This commit is contained in:
parent
0070587f4d
commit
9e73cc7176
|
@ -6,7 +6,7 @@
|
|||
/* By: tischmid <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2023/03/19 05:59:56 by tischmid #+# #+# */
|
||||
/* Updated: 2023/03/24 23:17:01 by tischmid ### ########.fr */
|
||||
/* Updated: 2023/03/24 23:17:31 by tischmid ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
@ -34,7 +34,7 @@ int main(void)
|
|||
|
||||
for (int j = 0; j < arrlen; ++j)
|
||||
{
|
||||
printf("####### buf = '|' * 10, src == '%s' #######\n", teststrings[j]);
|
||||
printf("####### dest = '|' * 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]);
|
||||
|
|
Loading…
Reference in New Issue