This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

32 lines
494 B
C

#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
}