]> git.sur5r.net Git - cc65/blob - src/cc65/input.h
Added .dbg statement generation for the assembler
[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     unsigned long   Size;       /* File size */
69     unsigned long   MTime;      /* Time of last modification */
70     char            Name[1];    /* Name of file (dynamically allocated) */
71 };
72
73
74
75 /*****************************************************************************/
76 /*                                   Code                                    */
77 /*****************************************************************************/
78
79
80
81 void OpenMainFile (const char* Name);
82 /* Open the main file. Will call Fatal() in case of failures. */
83
84 void OpenIncludeFile (const char* Name, unsigned DirSpec);
85 /* Open an include file and insert it into the tables. */
86
87 void ClearLine (void);
88 /* Clear the current input line */
89                                                              
90 void InitLine (const char* Buf);
91 /* Initialize lptr from Buf and read CurC and NextC from the new input line */
92
93 void NextChar (void);
94 /* Read the next character from the input stream and make CurC and NextC
95  * valid. If end of line is reached, both are set to NUL, no more lines
96  * are read by this function.
97  */
98
99 int NextLine (void);
100 /* Get a line from the current input. Returns 0 on end of file. */
101
102 const char* GetCurrentFile (void);
103 /* Return the name of the current input file */
104
105 unsigned GetCurrentLine (void);
106 /* Return the line number in the current input file */
107
108 void WriteDependencies (FILE* F, const char* OutputFile);
109 /* Write a makefile dependency list to the given file */
110
111
112
113 /* End of input.h */
114 #endif
115
116
117