32 lines
494 B
C
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
|
|
}
|