map.c

Sun, 01 Apr 2001 01:43:46 +0200

author
tuomov
date
Sun, 01 Apr 2001 01:43:46 +0200
changeset 34
828f3afd5c76
child 36
63cd573ffbcf
permissions
-rw-r--r--

trunk: changeset 37
Added StringIntMap

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 *
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
4 * Copyright (c) Tuomo Valkonen 1999-2000.
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