* sim/ucsim/cmd.src/newcmdposix.cc, sim/ucsim/cmd.src/newcmdposixcl.h,
[fw/sdcc] / sim / ucsim / utils.h
index 271d1b41cb2dbd946f156466c92651544efb71d2..f0cecff1f969c896351ae9ed1b222e116f2b5494 100644 (file)
@@ -2,7 +2,7 @@
  * Simulator of microcontrollers (utils.h)
  *
  * Copyright (C) 1999,99 Drotos Daniel, Talker Bt.
- * 
+ *
  * To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
  *
  */
@@ -28,11 +28,24 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #ifndef UTILS_HEADER
 #define UTILS_HEADER
 
+#include <stdio.h>
+
+// prj
+#include "stypes.h"
+
+
+//#define TRACE printf
+#define TRACE   1 ? (void)0 : (*(void (*)(const char *, ...))0)
+
 
-extern int get_sub_opt(char **option,
-                      const char * const *tokens,
-                      char **valuep);
+extern int get_sub_opt(char **option, const char * const *tokens, char **valuep);
 extern char *get_id_string(struct id_element *ids, int id);
+extern char *get_id_string(struct id_element *ids, int id, char *def);
+extern int get_string_id(struct id_element *ids, char *str);
+extern int get_string_id(struct id_element *ids, char *str, int def);
+extern char *format_string(char *format, ...);
+extern char *object_name(class cl_base *o);
+extern char *case_string(enum letter_case lcase, char *str);
 
 
 #endif