47 lines
1.5 KiB
C
47 lines
1.5 KiB
C
/* This program is not finished! */
|
|
|
|
#include <stdio.h>
|
|
#include "Lexer.h"
|
|
#include "Lexer.c"
|
|
|
|
int main() {
|
|
// variables
|
|
char* sourcecode = "index = 2 * count + 42;"; // input string
|
|
int lexer_state = _START_; // int var for the state machine
|
|
char* current_pos = sourcecode;
|
|
char** ptr_current = ¤t_pos;
|
|
|
|
// checking var values
|
|
printf("%c\n", sourcecode); // printing the input string to check it
|
|
|
|
// main loop
|
|
do {
|
|
switch (lexer_state) { // state machine starts here
|
|
case _START_:
|
|
lexer_state = start(sourcecode);
|
|
break;
|
|
case _GET_NEXT_CHARACTER_:
|
|
lexer_state = getNextCharacter(ptr_current);
|
|
break;
|
|
case _READ_IDENTIFIER_:
|
|
lexer_state = readIdentifier(ptr_current);
|
|
break;
|
|
case _READ_NUM_LIT_:
|
|
lexer_state = readNumLit(ptr_current);
|
|
break;
|
|
case _READ_OPERATOR_:
|
|
lexer_state = readOperator(ptr_current);
|
|
break;
|
|
case _READ_PUNCTUATION_:
|
|
lexer_state = readPunctuation(ptr_current);
|
|
break;
|
|
default: lexer_state = _ERROR_;
|
|
}
|
|
} while (lexer_state != _STOP_); // state machine ends here
|
|
|
|
// printf("Lexer exited with code ");
|
|
// printf(lexer_state);
|
|
|
|
return 0;
|
|
}
|