Added a .IDENT function
git-svn-id: svn://svn.cc65.org/cc65/trunk@3506 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 1998-2004 Ullrich von Bassewitz */
|
||||
/* (C) 1998-2005 Ullrich von Bassewitz */
|
||||
/* R<>merstra<72>e 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
@@ -174,6 +174,7 @@ enum Token {
|
||||
TOK_HIWORD,
|
||||
TOK_I16,
|
||||
TOK_I8,
|
||||
TOK_MAKEIDENT,
|
||||
TOK_IF,
|
||||
TOK_IFBLANK,
|
||||
TOK_IFCONST,
|
||||
@@ -267,6 +268,12 @@ extern int ForcedEnd; /* Force end of assembly */
|
||||
|
||||
|
||||
|
||||
int IsIdChar (int C);
|
||||
/* Return true if the character is a valid character for an identifier */
|
||||
|
||||
int IsIdStart (int C);
|
||||
/* Return true if the character may start an identifier */
|
||||
|
||||
void NewInputFile (const char* Name);
|
||||
/* Open a new input file */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user