X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=sim%2Fucsim%2Futils.h;h=796654d76b80d0f618624ff5257df648a568f5eb;hb=34d14506fd0c12ee5434fec0f9dec27753e1aab5;hp=08472244fd1827c54ac6dadb4bbc306c2ba6541b;hpb=f27cbdc6513b26748661452e50ed3af99fac16a2;p=fw%2Fsdcc diff --git a/sim/ucsim/utils.h b/sim/ucsim/utils.h index 08472244..796654d7 100644 --- a/sim/ucsim/utils.h +++ b/sim/ucsim/utils.h @@ -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,14 +28,24 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #ifndef UTILS_HEADER #define UTILS_HEADER +#include + +// 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 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 int get_sub_opt(char **option, const char * const *tokens, char **valuep); +extern const char *get_id_string(struct id_element *ids, int id); +extern const char *get_id_string(struct id_element *ids, int id, const char *def); +extern int get_string_id(struct id_element *ids, const char *str); +extern int get_string_id(struct id_element *ids, const char *str, int def); +extern char *format_string(const char *format, ...); +extern const char *object_name(class cl_base *o); +extern char *case_string(enum letter_case lcase, const char *str); #endif