44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* token_lifetime.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: maiboyer <maiboyer@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/09/28 14:37:13 by maiboyer #+# #+# */
|
|
/* Updated: 2024/10/12 17:51:56 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "me/string/string.h"
|
|
#include "me/vec/vec_token.h"
|
|
#include "parser/token.h"
|
|
|
|
void token_free(t_token tok)
|
|
{
|
|
string_free(tok.string);
|
|
vec_token_free(tok.subtokens);
|
|
}
|
|
|
|
t_token token_new(enum e_token type)
|
|
{
|
|
return ((t_token){.type = type, .string = string_new(16), \
|
|
.subtokens = {NULL, 0, 0, NULL}});
|
|
}
|
|
|
|
t_token token_new_meta(enum e_token type)
|
|
{
|
|
return ((t_token){.type = type, .string = {NULL, 0, 0}, \
|
|
.subtokens = vec_token_new(16, token_free)});
|
|
}
|
|
|
|
bool token_is_meta(t_token tok)
|
|
{
|
|
return (tok.subtokens.buffer != NULL);
|
|
}
|
|
|
|
t_token token_new_none(void)
|
|
{
|
|
return ((t_token){.type = TOK_NONE, .string = {NULL, 0, 0}, \
|
|
.subtokens = {NULL, 0, 0, NULL}});
|
|
}
|