blob: 9f5c4e95d342119aaf2c791c6f53a7ae7e59981d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* free_token.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/27 14:38:57 by dkaiser #+# #+# */
/* Updated: 2024/06/28 14:55:12 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include "token.h"
void free_token(t_token *token)
{
if (token->type == STRING_TOKEN)
free(token->content.string);
if (token->previous != NULL)
token->previous->next = NULL;
if (token->next != NULL)
token->next->previous = NULL;
free(token);
}
|