]> git.sur5r.net Git - cc65/blobdiff - src/ca65/scanner.h
More lineinfo usage.
[cc65] / src / ca65 / scanner.h
index be081dce7fe64f5479e8268be9d254616d3b9c45..0fad248d13fc31116f89684a6b04af1498b109c9 100644 (file)
 
 
 
-/* common */
-#include "filepos.h"
-#include "strbuf.h"
-
 /* ca65 */
 #include "token.h"
 
 
 
 /* Scanner variables */
-extern token_t Tok;                     /* Current token */
-extern int WS;                                 /* Flag: Whitespace before token */
-extern long IVal;                              /* Integer token attribute */
-extern StrBuf SVal;                     /* String token attribute */
-
-extern FilePos         CurPos;                 /* Name and position in file */
-extern int             ForcedEnd;              /* Force end of assembly */
+extern Token CurTok;            /* Current input token incl. attributes */
+extern int   ForcedEnd;                /* Force end of assembly */