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_cmd,
      15                          ELEMENT *current);
      16  INDEX *ultimate_index (INDEX *index);
      17  void wipe_indices (void);
      18  void set_non_ignored_space_in_index_before_command (ELEMENT *content);
      19  #endif