d8b4a0833152c784ab9481a1936aa0cf8a8771ae
[fw/sdcc] / sim / ucsim / utils.cc
1 /*
2  * Simulator of microcontrollers (utils.cc)
3  *
4  * Copyright (C) 1999,99 Drotos Daniel, Talker Bt.
5  * 
6  * To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
7  *
8  */
9
10 /* This file is part of microcontroller simulator: ucsim.
11
12 UCSIM is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 UCSIM is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with UCSIM; see the file COPYING.  If not, write to the Free
24 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 02111-1307, USA. */
26 /*@1@*/
27
28 #include "i_string.h"
29
30 #include "stypes.h"
31
32
33 int
34 get_sub_opt(char **option, const char * const *tokens, char **valuep)
35 {
36   char *end, *equ;
37   int i;
38
39   if (!(end= strchr(*option, ',')))
40     end= *option + strlen(*option);
41   else
42     *end++= '\0';
43   if ((equ= strchr(*option, '=')))
44     {
45       *valuep= equ+1;
46       *equ= '\0';
47     }
48   else
49     *valuep= 0;
50   i= 0;
51   while (tokens[i] &&
52          strcmp(*option, tokens[i]))
53     i++;
54   if (!tokens[i])
55     *valuep= *option;
56   *option= end;
57   return tokens[i]?i:-1;
58 }
59
60
61 char *
62 get_id_string(struct id_element *ids, int id)
63 {
64   int i= 0;
65
66   while (ids[i].id_string &&
67          id != ids[i].id)
68     i++;
69   return(ids[i].id_string);
70 }
71
72 char *
73 get_id_string(struct id_element *ids, int id, char *def)
74 {
75   char *s= get_id_string(ids, id);
76
77   return(s?s:def);
78 }
79
80 int
81 get_string_id(struct id_element *ids, char *str)
82 {
83   int i= 0;
84
85   while (ids[i].id_string &&
86          strcmp(ids[i].id_string, str) != 0)
87     i++;
88   return(ids[i].id);
89 }
90
91 int
92 get_string_id(struct id_element *ids, char *str, int def)
93 {
94   int i= 0;
95
96   while (ids[i].id_string &&
97          strcmp(ids[i].id_string, str) != 0)
98     i++;
99   return(ids[i].id_string?ids[i].id:def);
100 }
101
102 /* End of utils.cc */