Sun, 07 Mar 2004 22:10:48 +0100
trunk: changeset 1360
Added scopyn.
58 | 1 | /* |
2 | * libtu/map.h | |
3 | * | |
4 | * Copyright (c) Tuomo Valkonen 1999-2002. | |
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. | |
8 | */ | |
9 | ||
10 | #ifndef LIBTU_MAP_H | |
11 | #define LIBTU_MAP_H | |
12 | ||
13 | typedef struct _StringIntMap{ | |
62 | 14 | const char *string; |
15 | int value; | |
58 | 16 | } StringIntMap; |
17 | ||
18 | #define END_STRINGINTMAP {NULL, 0} | |
19 | ||
20 | /* Return the index of str in map or -1 if not found. */ | |
21 | extern int stringintmap_ndx(const StringIntMap *map, const char *str); | |
22 | extern int stringintmap_value(const StringIntMap *map, const char *str, | |
62 | 23 | int dflt); |
58 | 24 | |
25 | #endif /* LIBTU_MAP_H */ |