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
University-Basics-of-Progra…/Exercise 4/Lexer.c
T
2023-06-06 15:30:02 +02:00

12 lines
205 B
C

#include "Lexer.h"
void init_Lexer(Lexer_t* lexptr, char* src_in){
lexptr->state = _START_;
lexptr->source_code = src_in;
lexptr->current_pos = &src_in;
}
void run_Lexer(Lexer_t* lexer) {
}