From 33274515c4ee5dc844314feea046bb321cb99aea Mon Sep 17 00:00:00 2001 From: dx Date: Wed, 20 May 2020 15:32:10 +0100 Subject: -removed the refactor of compile_inner_text Doesn't work very well --- Converter/includes/compiler.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Converter/includes/compiler.h') diff --git a/Converter/includes/compiler.h b/Converter/includes/compiler.h index 1e8578f..6e1eca8 100644 --- a/Converter/includes/compiler.h +++ b/Converter/includes/compiler.h @@ -6,8 +6,6 @@ typedef char *string; const static char TOKENS[] = {'*', '_', '~'}; -const static char *TOKENS_COMPILED[] = { "", "", "" }; -const static char *TOKENS_CLOSE_COMPILED[] = { "", "", "" }; const static size_t N_TOKENS = 3; /* Compile markdown line to HTML line */ @@ -16,7 +14,5 @@ string compile_line(string line, size_t sz_line, string line_or_source); int find_string(string src, string query, size_t sz_src, size_t sz_query); /* Check if a given character is a text token*/ bool is_token(char c); -/* Generate the compiled token pair for a given single sized markdown token */ -char **get_token_pair(char c); #endif // __COMPILER_H_ -- cgit v1.2.3-13-gbd6f