]> git.sur5r.net Git - cc65/blob - src/cc65/input.h
Use CHAR_BITS instead of a hardcoded 8 bits/byte.
[cc65] / src / cc65 / input.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  input.h                                  */
4 /*                                                                           */
5 /*                            Input file handling                            */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 2000-2004 Ullrich von Bassewitz                                       */
10 /*               Römerstrasse 52                                             */
11 /*               D-70794 Filderstadt                                         */
12 /* EMail:        uz@cc65.org                                                 */
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 /* common */
44 #include "strbuf.h"
45
46
47
48 /*****************************************************************************/
49 /*                                   data                                    */
50 /*****************************************************************************/
51
52
53
54 /* The current input line */
55 extern StrBuf* Line;
56
57 /* Current and next input character */
58 extern char CurC;
59 extern char NextC;
60
61 /* Struct that describes an input file */
62 typedef struct IFile IFile;
63 struct IFile {
64     unsigned        Index;      /* File index */
65     unsigned        Usage;      /* Usage counter */
66     unsigned long   Size;       /* File size */
67     unsigned long   MTime;      /* Time of last modification */
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 NextChar (void);
86 /* Read the next character from the input stream and make CurC and NextC
87  * valid. If end of line is reached, both are set to NUL, no more lines
88  * are read by this function.
89  */
90
91 void ClearLine (void);
92 /* Clear the current input line */
93
94 StrBuf* InitLine (StrBuf* Buf);
95 /* Initialize Line from Buf and read CurC and NextC from the new input line.
96  * The function returns the old input line.
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