Thu, 03 Aug 2006 23:09:14 +0200
Updated locations of *.mk.
| 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); |
| 75 | 24 | extern const char *stringintmap_key(const StringIntMap *map, |
| 25 | int value, const char *dflt); | |
| 58 | 26 | |
| 27 | #endif /* LIBTU_MAP_H */ |