blob: 6c521de435b65bf07551fc5622e26b810eb69d15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putstr_non_printable.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/04 16:46:03 by cacharle #+# #+# */
/* Updated: 2019/07/07 16:51:03 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
void ft_putchar(char c)
{
write(1, &c, 1);
}
void ft_putstr_non_printable(char *str)
{
unsigned char tmp;
unsigned char *cursor;
char *hex_symbols;
hex_symbols = "0123456789abcdef";
cursor = (unsigned char*)str;
while (*cursor != '\0')
{
if (*cursor >= ' ' && *cursor <= '~')
write(1, cursor, 1);
else
{
ft_putchar('\\');
tmp = *cursor / 16;
ft_putchar(hex_symbols[tmp]);
tmp = *cursor % 16;
ft_putchar(hex_symbols[tmp]);
}
cursor++;
}
}
|