Sat, 05 Apr 2003 22:21:24 +0200
trunk: changeset 53
StringIntMap fixed (not)
| 34 | 1 | /* |
| 2 | * libtu/map.c | |
| 3 | * | |
| 36 | 4 | * Copyright (c) Tuomo Valkonen 1999-2002. |
| 34 | 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) | |
| 49 | 18 | return map[i].value; |
| 34 | 19 | } |
| 20 | ||
| 21 | return -1; | |
| 22 | } | |
| 23 |