* test-9.il: New test, test instaniating a class
[mono.git] / mono / dis / util.h
1
2 typedef struct {
3         int code;
4         const 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 char*       data_dump (const char *data, int len, const char* prefix);
11
12 #define CSIZE(x) (sizeof (x) / 4)