Wed, 28 May 2003 23:48:16 +0200
trunk: changeset 57
License changed to Artistic/LGPL dual license.
34 | 1 | /* |
2 | * libtu/map.c | |
3 | * | |
36 | 4 | * Copyright (c) Tuomo Valkonen 1999-2002. |
53 | 5 | * |
6 | * You may distribute and modify this library under the terms of either | |
7 | * the Clarified Artistic License or the GNU LGPL, version 2.1 or later. | |
34 | 8 | */ |
9 | ||
10 | #include <string.h> | |
11 | #include <libtu/map.h> | |
12 | ||
13 | ||
14 | int stringintmap_ndx(const StringIntMap *map, const char *str) | |
15 | { | |
16 | int i; | |
17 | ||
18 | for(i=0; map[i].string!=NULL; i++){ | |
19 | if(strcmp(str, map[i].string)==0) | |
51 | 20 | return i; |
34 | 21 | } |
22 | ||
23 | return -1; | |
24 | } | |
25 | ||
51 | 26 | |
27 | int stringintmap_value(const StringIntMap *map, const char *str, int dflt) | |
28 | { | |
29 | int i=stringintmap_ndx(map, str); | |
30 | return (i==-1 ? dflt : map[i].value); | |
31 | } | |
32 |