Add a bunch of const qualifiers.

This commit is contained in:
David F. Skoll
2008-01-26 21:55:58 -05:00
parent b6883c8a45
commit ba3e01f2ce
15 changed files with 41 additions and 39 deletions
+5 -5
View File
@@ -73,12 +73,12 @@ typedef struct {
typedef struct {
char isnested; /* Is it a nested expression? */
char allownested;
char *text; /* Start of text */
char *pos; /* Current position */
char *etext; /* Substituted text */
char *epos; /* Position in substituted text */
char const *text; /* Start of text */
char const *pos; /* Current position */
char const *etext; /* Substituted text */
char const *epos; /* Position in substituted text */
DynamicBuffer pushedToken; /* Pushed-back token */
char *tokenPushed; /* NULL if no pushed-back token */
char const *tokenPushed; /* NULL if no pushed-back token */
} Parser;
typedef Parser *ParsePtr; /* Pointer to parser structure */