]> git.sur5r.net Git - cc65/blobdiff - src/cc65/input.h
Adds documentation and a sample config file for the ATARI format.
[cc65] / src / cc65 / input.h
index e6fcc618cd6df0ec10dcfaebc5288f67f6b8af31..a643800ba2088aae176dae9c41fadcf641541618 100644 (file)
@@ -52,8 +52,8 @@
 
 
 /* An enum that describes different types of input files. The members are
- * choosen so that it is possible to combine them to bitsets
- */
+** choosen so that it is possible to combine them to bitsets
+*/
 typedef enum {
     IT_MAIN   = 0x01,           /* Main input file */
     IT_SYSINC = 0x02,           /* System include file (using <>) */
@@ -86,17 +86,17 @@ void OpenIncludeFile (const char* Name, InputType IT);
 
 void NextChar (void);
 /* Read the next character from the input stream and make CurC and NextC
- * valid. If end of line is reached, both are set to NUL, no more lines
- * are read by this function.
- */
+** valid. If end of line is reached, both are set to NUL, no more lines
+** are read by this function.
+*/
 
 void ClearLine (void);
 /* Clear the current input line */
 
 StrBuf* InitLine (StrBuf* Buf);
 /* Initialize Line from Buf and read CurC and NextC from the new input line.
- * The function returns the old input line.
- */
+** The function returns the old input line.
+*/
 
 int NextLine (void);
 /* Get a line from the current input. Returns 0 on end of file. */