]> git.itanic.dy.fi Git - glucose/blob - utils.c
contour-protocol: Replace bad macros with static functions
[glucose] / utils.c
1 /*
2  * Copyright (C) 2012 Timo Kokkonen <timo.t.kokkonen@iki.fi>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17  * USA
18  */
19
20 #include <stdio.h>
21
22 #include "utils.h"
23
24 int trace_level;
25
26 int datalen(const unsigned char *data)
27 {
28         int i, len;
29
30         for (i = 0, len = 0; i < 64; i++)
31                 if (data[i])
32                         len = i;
33
34         return len + 1;
35 }
36
37 void print_hex(const unsigned char *data, int len)
38 {
39         int i;
40
41         for (i = 0; i < len; i++)
42                 printf("0x%02x ", data[i]);
43
44         printf("\n");
45 }
46
47 void print_ascii(const unsigned char *data, int len)
48 {
49         int i;
50
51         for (i = 0; i < len; i++)
52                 printf("%c", is_printable(data[i]) ? data[i] : '.');
53
54         printf("\n");
55 }
56
57 void sanitize_ascii(unsigned char *data, int len)
58 {
59         int i;
60
61         for (i = 0; i < len; i++)
62                 data[i] = is_printable(data[i]) ? data[i] : '.';
63         data[i] = 0;
64 }