changeset 120 | 430dbec0c228 |
119:305d2ca32936 | 120:430dbec0c228 |
---|---|
1 /** |
|
2 * test/demos/lsflib/include/bits.h |
|
3 * Copyright (C) 2008 Markus Broeker |
|
4 */ |
|
5 |
|
6 #ifndef __BITS_H__ |
|
7 #define __BITS_H__ |
|
8 |
|
9 #define BITS 8 |
|
10 |
|
11 char *bindump (char *, int); |
|
12 char *hexdump (char *, int); |
|
13 char *not (char *); |
|
14 char *xor (char *, char); |
|
15 |
|
16 #endif |