]> git.sur5r.net Git - cc65/blob - src/cc65/input.h
Added the lineinfo module. Changed the complete code generation to use the
[cc65] / src / cc65 / input.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  input.h                                  */
4 /*                                                                           */
5 /*                            Input file handling                            */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000      Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
13 /*                                                                           */
14 /*                                                                           */
15 /* This software is provided 'as-is', without any expressed or implied       */
16 /* warranty.  In no event will the authors be held liable for any damages    */
17 /* arising from the use of this software.                                    */
18 /*                                                                           */
19 /* Permission is granted to anyone to use this software for any purpose,     */
20 /* including commercial applications, and to alter it and redistribute it    */
21 /* freely, subject to the following restrictions:                            */
22 /*                                                                           */
23 /* 1. The origin of this software must not be misrepresented; you must not   */
24 /*    claim that you wrote the original software. If you use this software   */
25 /*    in a product, an acknowledgment in the product documentation would be  */
26 /*    appreciated but is not required.                                       */
27 /* 2. Altered source versions must be plainly marked as such, and must not   */
28 /*    be misrepresented as being the original software.                      */
29 /* 3. This notice may not be removed or altered from any source              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef INPUT_H
37 #define INPUT_H
38
39
40
41 #include <stdio.h>
42
43
44
45 /*****************************************************************************/
46 /*                                   data                                    */
47 /*****************************************************************************/
48
49
50
51 /* Maximum length of an input line and the corresponding char array */
52 #define LINEMAX         4095
53 #define LINESIZE        LINEMAX+1
54
55 /* Input line stuff */
56 extern char* line;
57 extern const char* lptr;                /* ### Remove this */
58
59 /* Current and next input character */
60 extern char CurC;
61 extern char NextC;
62
63 /* Struct that describes an input file */
64 typedef struct IFile IFile;
65 struct IFile {
66     unsigned    Index;          /* File index                           */
67     unsigned    Usage;          /* Usage counter                        */
68     char        Name[1];        /* Name of file (dynamically allocated) */
69 };
70
71
72
73 /*****************************************************************************/
74 /*                                   Code                                    */
75 /*****************************************************************************/
76
77
78
79 void OpenMainFile (const char* Name);
80 /* Open the main file. Will call Fatal() in case of failures. */
81
82 void OpenIncludeFile (const char* Name, unsigned DirSpec);
83 /* Open an include file and insert it into the tables. */
84
85 void ClearLine (void);
86 /* Clear the current input line */
87
88 void InitLine (const char* Buf);
89 /* Initialize lptr from Buf and read CurC and NextC from the new input line */
90
91 void NextChar (void);
92 /* Read the next character from the input stream and make CurC and NextC
93  * valid. If end of line is reached, both are set to NUL, no more lines
94  * are read by this function.
95  */
96
97 int NextLine (void);
98 /* Get a line from the current input. Returns 0 on end of file. */
99
100 const char* GetCurrentFile (void);
101 /* Return the name of the current input file */
102
103 unsigned GetCurrentLine (void);
104 /* Return the line number in the current input file */
105
106 void WriteDependencies (FILE* F, const char* OutputFile);
107 /* Write a makefile dependency list to the given file */
108
109
110
111 /* End of input.h */
112 #endif
113
114
115