Sat, 19 Jan 2002 19:31:04 +0100
trunk: changeset 39
- The tokenizer also supports reading from a buffer now.
- 2002 update
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) | |
18 | return i; | |
19 | } | |
20 | ||
21 | return -1; | |
22 | } | |
23 |