2001-06-27 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mono / dis / util.h
1
2 typedef struct {
3         int code;
4         char *str;
5 } map_t;
6
7 const char *map       (guint32 code, map_t *table);
8 const char *flags     (guint32 code, map_t *table);
9 void        hex_dump  (const char *buffer, int base, int count);
10
11 #define CSIZE(x) (sizeof (x) / 4)