-
Notifications
You must be signed in to change notification settings - Fork 0
/
lst_utils.c
20 lines (18 loc) · 1.01 KB
/
lst_utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* lst_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ldulling <ldulling@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/13 21:58:28 by lbapart #+# #+# */
/* Updated: 2023/10/15 15:29:30 by ldulling ### ########.fr */
/* */
/* ************************************************************************** */
#include "hotrace.h"
void assign_node(t_list *node, char *key, char *value)
{
node->key = key;
node->value = value;
node->next = NULL;
}