(root)/
texinfo-7.1/
tp/
Texinfo/
XS/
parsetexi/
labels.h
       1  /* labels.h - declarations for labels.c */
       2  #ifndef LABELS_H
       3  #define LABELS_H
       4  /* Copyright 2010-2023 Free Software Foundation, Inc.
       5  
       6     This program is free software: you can redistribute it and/or modify
       7     it under the terms of the GNU General Public License as published by
       8     the Free Software Foundation, either version 3 of the License, or
       9     (at your option) any later version.
      10  
      11     This program is distributed in the hope that it will be useful,
      12     but WITHOUT ANY WARRANTY; without even the implied warranty of
      13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      14     GNU General Public License for more details.
      15  
      16     You should have received a copy of the GNU General Public License
      17     along with this program.  If not, see <http://www.gnu.org/licenses/>. */
      18  
      19  #include "tree_types.h"
      20  
      21  extern ELEMENT **target_elements_list;
      22  extern size_t labels_number;
      23  void reset_labels (void);
      24  void check_register_target_element_label (ELEMENT *label_element,
      25                                            ELEMENT *target_element);
      26  
      27  
      28  
      29  NODE_SPEC_EXTRA *parse_node_manual (ELEMENT *node, int modify_node);
      30  
      31  
      32  extern ELEMENT **internal_xref_list;
      33  extern size_t internal_xref_number;
      34  
      35  void remember_internal_xref (ELEMENT *element);
      36  void reset_internal_xrefs (void);
      37  #endif