#include "Lexer.h" int start(char* src) { // if (src != NULL) { // return _GET_NEXT_CHARACTER_; // } else { // return _STOP_; // } return _STOP_; // placeholder } int getNextCharacter() { return _STOP_; // placeholder } int readIdentifier() { return _STOP_; // placeholder } int readNumLit() { return _STOP_; // placeholder } int readOperator() { return _STOP_; // placeholder } int readPunctuation() { return _STOP_; // placeholder }