summaryrefslogtreecommitdiff
path: root/macros/texinfo/texinfo/tp/Texinfo/XS/parsetexi/labels.h
blob: 66624c56b062b2b31b668749f2ca15ad4a55e1f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* labels.h - declarations for labels.c */
#ifndef LABELS_H
#define LABELS_H
/* Copyright 2010-2021 Free Software Foundation, Inc.

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>. */

#include "tree_types.h"

/* Information about a possible target of a cross-reference, often a node. */
typedef struct {
    /* Pointer to the element for the command defining this label, usually a
       node element.  FIXME: I'm not sure if we actualy need to get to the
       target - much of the use of the labels_information is to check that 
       references are to real places. */
    ELEMENT *target;
} LABEL;

extern LABEL *labels_list;
extern size_t labels_number;
void register_label (ELEMENT *current, ELEMENT *label);
void reset_labels (void);


extern ELEMENT **internal_xref_list;
extern size_t internal_xref_number;
extern size_t internal_xref_space;

void remember_internal_xref (ELEMENT *element);
void reset_internal_xrefs (void);
#endif