1 /* indices.h - declarations for indices.h */
2 #ifndef INDICES_H
3 #define INDICES_H
4 
5 #include "tree_types.h"
6 
7 extern INDEX **index_names;
8 
9 void init_index_commands (void);
10 
11 INDEX *index_by_name (char *name);
12 void add_index (char *name, int in_code);
13 INDEX *index_of_command (enum command_id cmd);
14 void enter_index_entry (enum command_id index_type_command,
15                    enum command_id index_at_command, ELEMENT *current,
16                    ELEMENT *content);
17 INDEX *ultimate_index (INDEX *index);
18 void wipe_indices (void);
19 #endif
20