source: git/MP/mpviewer/label.h @ 678cfd

spielwiese
Last change on this file since 678cfd was 678cfd, checked in by Olaf Bachmann <obachman@…>, 27 years ago
This commit was generated by cvs2svn to compensate for changes in r337, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@338 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 371 bytes
Line 
1/*
2   label.h - definitions for supporting Label and Reference annotations.
3*/
4
5#ifndef label_h
6#define label_h
7
8typedef struct ref_node       ref_node_t;
9typedef struct label_entry   label_entry_t;
10
11struct ref_node{
12  node_t        **node;
13  ref_node_t    *next;
14};
15
16struct label_entry {
17  char          *label;
18  ref_node_t    *ref_list;
19  node_t        *lnode;
20  label_entry_t  *next;
21};
22
23#endif
Note: See TracBrowser for help on using the repository browser.