10 lines
183 B
C
10 lines
183 B
C
|
#include "libasm.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void ft_list_print(t_list *begin_list) {
|
||
|
while (begin_list) {
|
||
|
printf("%s", (char *)begin_list->data);
|
||
|
begin_list = begin_list->next;
|
||
|
}
|
||
|
}
|