]> git.sur5r.net Git - cc65/blobdiff - src/cc65/scanner.h
Added the io module
[cc65] / src / cc65 / scanner.h
index 5653d953a714e85e4f8bcdd323e11c1cd4daba84..bbbed9ee650ea51ba41fdf96daf9521d35b07fe7 100644 (file)
@@ -172,13 +172,13 @@ extern Token NextTok;             /* The next token */
 
 
 
-void symname (char* s);
+void SymName (char* s);
 /* Get symbol from input stream */
 
-int issym (char* s);
+int IsSym (char* s);
 /* Get symbol from input stream or return 0 if not a symbol. */
 
-void NextToken (void);               
+void NextToken (void);
 /* Get next token from input stream */
 
 void Consume (token_t Token, unsigned ErrNum);