include/libtu/map.h

Sun, 01 Apr 2001 01:43:46 +0200

author
tuomov
date
Sun, 01 Apr 2001 01:43:46 +0200
changeset 34
828f3afd5c76
child 36
63cd573ffbcf
permissions
-rw-r--r--

trunk: changeset 37
Added StringIntMap

34
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
1 /*
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
2 * libtu/map.h
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
3 *
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
4 * Copyright (c) Tuomo Valkonen 1999-2000.
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
5 * See the included file LICENSE for details.
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
6 */
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
7
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
8 #ifndef LIBTU_MAP_H
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
9 #define LIBTU_MAP_H
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
10
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
11 typedef struct _StringIntMap{
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
12 const char *string;
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
13 int value;
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
14 } StringIntMap;
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
15
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
16 #define END_STRINGINTMAP {NULL, 0}
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
17
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
18 /* Return the index of str in map or -1 if not found. */
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
19 extern int stringintmap_ndx(const StringIntMap *map, const char *str);
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
20
828f3afd5c76 trunk: changeset 37
tuomov
parents:
diff changeset
21 #endif /* LIBTU_MAP_H */

mercurial