include/libtu/map.h

Sat, 19 Jan 2002 19:31:04 +0100

author
tuomov
date
Sat, 19 Jan 2002 19:31:04 +0100
changeset 36
63cd573ffbcf
parent 34
828f3afd5c76
child 51
2d95d77aa954
permissions
-rw-r--r--

trunk: changeset 39
- The tokenizer also supports reading from a buffer now.

- 2002 update

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 *
36
63cd573ffbcf trunk: changeset 39
tuomov
parents: 34
diff changeset
4 * Copyright (c) Tuomo Valkonen 1999-2002.
34
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