feat(lexer): usefull functions
This commit is contained in:
parent
e7784b8df1
commit
453a8ab0da
2 changed files with 103 additions and 0 deletions
|
|
@ -0,0 +1,36 @@
|
|||
#ifndef LEXER_H
|
||||
#define LEXER_H
|
||||
|
||||
/* @return: char*, the next token
|
||||
*
|
||||
*/
|
||||
char *get_token(void);
|
||||
|
||||
/*
|
||||
* @warning: NOT IMPLEMENTED.
|
||||
*
|
||||
* @note: maybe usefull for subshells.
|
||||
*/
|
||||
|
||||
char *get_token_str(void);
|
||||
|
||||
/*
|
||||
* @brief: return a newly allocated token.
|
||||
* This token contains [size] chars, starting from [begin].
|
||||
*
|
||||
* @return: NULL on error, null-terminated char* otherwise.
|
||||
*
|
||||
*/
|
||||
char *new_token(char *begin, ssize_t size);
|
||||
|
||||
/*
|
||||
* @brief: checks if the stream used for the last token creation is empty.
|
||||
* If it is, it calls stream_read() from IO_backend,
|
||||
* and sets [remaing_chars].
|
||||
* If not, it starts from the end of the last token.
|
||||
*
|
||||
* @return: char* stream from which we tokenise.
|
||||
*/
|
||||
char *stream_init(void);
|
||||
|
||||
#endif /* LEXER_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue