Jspice3
fteinp.h
Go to the documentation of this file.
1 /**********
2 Copyright 1990 Regents of the University of California. All rights reserved.
3 Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
4 **********/
5 
6 /*
7  *
8  * Note that this definition must be the same as struct card in INPdefs.h...
9  */
10 
11 #ifndef FTEinput_h
12 #define FTEinput_h
13 
14 struct line {
16  char *li_line;
17  char *li_error;
18  struct line *li_next;
19  struct line *li_actual;
20 } ;
21 
22 /* Listing types. */
23 
24 #define LS_LOGICAL 1
25 #define LS_PHYSICAL 2
26 #define LS_DECK 3
27 
28 #endif /* FTEinput_h */
29 
int li_linenum
Definition: fteinp.h:15
struct line * li_actual
Definition: fteinp.h:19
Definition: fteinp.h:14
char * li_error
Definition: fteinp.h:17
char * li_line
Definition: fteinp.h:16
struct line * li_next
Definition: fteinp.h:18