From 255a49ba5a41b3854dbdfebdec75fb6229450507 Mon Sep 17 00:00:00 2001 From: Galin Simeonov Date: Mon, 31 May 2021 22:02:10 +0300 Subject: added cmake file --- lexer.h | 54 ------------------------------------------------------ 1 file changed, 54 deletions(-) delete mode 100644 lexer.h (limited to 'lexer.h') diff --git a/lexer.h b/lexer.h deleted file mode 100644 index 320146c..0000000 --- a/lexer.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef LEXER_H -#define LEXER_H -#include //isspace -#include -#include -#include - -struct Translation_Data; -struct Source; - -enum Keyword -{ - KW_MACHINE, - KW_FROM, - KW_TO, - KW_ON, - KW_ID, - KW_STRING, - KW_NOP, - KW_EOF, - KW_OPEN_SQUARE, - KW_CLOSE_SQUARE, - KW_PIPE, - KW_SEMI_COLUMN, - KW_STARTING, - KW_STATES, - KW_EVENTS, - KW_EVENT, - KW_EXECUTE, - KW_TRANSITIONS, - KW_COMMA, -}; -struct token -{ - size_t size; - enum Keyword type; - char *data; - size_t row; - size_t column; -}; - -void lex(struct Queue *token_destination,struct Source *src,struct Translation_Data *translation_data); -struct token* lex_step(struct Source *src,struct Translation_Data *translation_data); -struct token* get_token(char *data,size_t size,enum Keyword type,size_t row,size_t column); -void skip_white_space(struct Source *src); - -void push_token_into_map(struct token *token,struct Map *map,void *thing); - - -void delete_token(struct token *token); -/*:X*/ -static char check_and_move_if_on_word(char *word,size_t word_size,struct Source *src,char needs_space_after); - -#endif -- cgit v1.2.3