aboutsummaryrefslogtreecommitdiff
path: root/helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'helper.c')
-rw-r--r--helper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/helper.c b/helper.c
index c4854bd..79af974 100644
--- a/helper.c
+++ b/helper.c
@@ -94,11 +94,11 @@ void ft_putstr_non_printable(char *str)
printf("\\0");
else
{
- ft_putchar('\\');
+ putchar('\\');
tmp = *cursor / 16;
- ft_putchar(hex_symbols[tmp]);
+ putchar(hex_symbols[tmp]);
tmp = *cursor % 16;
- ft_putchar(hex_symbols[tmp]);
+ putchar(hex_symbols[tmp]);
}
cursor++;
}