13 lines
148 B
C
13 lines
148 B
C
|
|
|
|
#include "pushswap.h"
|
|
|
|
t_list *sort_algo(t_stack *stack)
|
|
{
|
|
(void)stack;
|
|
t_list *lst;
|
|
|
|
lst = ft_lstnew(ft_strdup("solution"));
|
|
return (lst);
|
|
}
|