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