map.c

Sat, 19 Jan 2002 19:31:04 +0100

author
tuomov
date
Sat, 19 Jan 2002 19:31:04 +0100
changeset 36
63cd573ffbcf
parent 34
828f3afd5c76
child 49
755bdb97a607
permissions
-rw-r--r--

trunk: changeset 39
- The tokenizer also supports reading from a buffer now.

- 2002 update

34
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
1 /*
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
2 * libtu/map.c
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
3 *
36
63cd573ffbcf trunk: changeset 39
tuomov
parents: 34
diff changeset
4 * Copyright (c) Tuomo Valkonen 1999-2002.
34
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
5 * See the included file LICENSE for details.
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
6 */
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
7
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
8 #include <string.h>
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
9 #include <libtu/map.h>
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
10
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
11
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
12 int stringintmap_ndx(const StringIntMap *map, const char *str)
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
13 {
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
14 int i;
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
15
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
16 for(i=0; map[i].string!=NULL; i++){
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
17 if(strcmp(str, map[i].string)==0)
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
18 return i;
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
19 }
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
20
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
21 return -1;
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
22 }
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
23

mercurial