-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplo.c
69 lines (59 loc) · 1.58 KB
/
explo.c
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// C99
#include <stdio.h>
typedef unsigned char octet;
// ======================================================================
// version 1
static inline void affiche_bit(const octet c,
const octet position_pattern)
{
putchar(c & position_pattern ? '1' : '0');
}
void affiche_binaire(const octet c) {
for(octet mask = 0x80; mask; mask >>= 1)
affiche_bit(c, mask);
}
/* version 2 : moins bonne que ci-dessus :
* affiche les bits � � l'envers � et n'affiche
* pas les 0 de poids fort.
*/
void affiche_binaire_2(octet c) {
do {
if (c & 1) putchar('1');
else putchar('0');
c >>= 1; // ou c /= 2;
} while (c);
}
// ======================================================================
void affiche(size_t i, octet c) {
printf("%02zu : ", i);
affiche_binaire(c);
printf(" %3u ", (unsigned int) c);
if ((c >= 32) && (c <= 126)) {
printf("'%c'", c);
}
putchar('\n');
}
// ======================================================================
void dump_mem(const octet* ptr, size_t length)
{
/* Avec l'arithmetique des pointeurs
*/
octet* ptr_end = ptr + length;
printf("A partir de %p :\n", ptr);
for(octet* index = ptr; index != ptr_end; index++) {
affiche(index - ptr, *index);
}
}
// ======================================================================
int main(void)
{
int a = 64 + 16;
int b = -a;
double x = 0.5;
double y = 0.1;
dump_mem( (octet*) &a, sizeof(a) );
dump_mem( (octet*) &b, sizeof(b) );
dump_mem( (octet*) &x, sizeof(x) );
dump_mem( (octet*) &y, sizeof(y) );
return 0;
}