[corlib] Use AppContextSwitches implementation from RS. Fixes #54448 (#4682)
[mono.git] / mono / dis / util.h
old mode 100644 (file)
new mode 100755 (executable)
index 4fda209..d8ff7bf
@@ -1,11 +1,12 @@
-
 typedef struct {
        int code;
        const char *str;
-} map_t;
+} dis_map_t;
 
-const char *map       (guint32 code, map_t *table);
-const char *flags     (guint32 code, map_t *table);
+const char *map       (guint32 code, dis_map_t *table);
+const char *flags     (guint32 code, dis_map_t *table);
 void        hex_dump  (const char *buffer, int base, int count);
 char*       data_dump (const char *data, int len, const char* prefix);
 
+extern int dis_isinf (double num);
+extern int dis_isnan (double num);