diff --git a/lexer_8h_source.html b/lexer_8h_source.html
index 53f75880..731215c3 100644
--- a/lexer_8h_source.html
+++ b/lexer_8h_source.html
@@ -158,7 +158,7 @@
247 unsigned *word_index);
-
+ 253 char *
hbsq(
struct lexer *
lexer,
char **word,
unsigned *word_index,
254 bool *is_diactivated);
@@ -182,11 +182,11 @@
bool handle_dollar(struct lexer *lexer, char **word, unsigned *word_index, bool *is_in_braces)
Handle the dollar character.
Definition: lexer_utils.c:172
struct token check_special_cases(struct lexer *lexer, char *word, struct token token)
replace check cases in parse_input_for_tok
Definition: lexer_utils3.c:3
struct lexer * lexer_new(const char *input)
Create a new lexer from the given input string.
Definition: lexer.c:34
+char * hbsq(struct lexer *lexer, char **word, unsigned *word_index, bool *is_diactivated)
replace backslash and simple quote handling of get_word handle backslash & single quote
Definition: lexer_utils3.c:92
bool not_valid_check_var(struct lexer *lexer, char **word, char *curr_word)
replace if of line 120 in check_variable_name
Definition: lexer_utils2.c:223
char * handle_simple_quote(struct lexer *lexer, bool *is_diactivated, char *word, unsigned *word_index)
Handle the simple quote character.
Definition: lexer_utils.c:22
char * handle_comment(struct lexer *lexer, char *word, unsigned *word_index)
Handle the comment character.
Definition: lexer_utils.c:259
char * handle_double_quote(struct lexer *lexer, bool *is_diactivated, char *word, unsigned *word_index)
Handle the double quote character.
Definition: lexer_utils.c:201
-char * hbsq(struct lexer *lexer, char *word, unsigned *word_index, bool *is_diactivated)
replace backslash and simple quote handling of get_word handle backslash & single quote
Definition: lexer_utils3.c:92
void handle_back_slash_in_double_quote(struct lexer *lexer, char *word, unsigned *word_index)
Handle the backslash character in a double quote.
Definition: lexer_utils2.c:152
void handle_backslash(struct lexer *lexer, bool *is_diactivated, char *word, unsigned word_index)
Handle the backslash character.
Definition: lexer_utils.c:7
struct token lexer_peek(struct lexer *lexer)
Get the next token, but doesn't move forward in the stream.*.
Definition: lexer.c:303
diff --git a/lexer__utils3_8c.html b/lexer__utils3_8c.html
index 8a0092b0..1835cba8 100644
--- a/lexer__utils3_8c.html
+++ b/lexer__utils3_8c.html
@@ -101,9 +101,9 @@