This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
prog-104-p-03-2030/functional_market/Proficiencies/list.c
T
2026-04-09 15:08:25 +02:00

25 lines
300 B
C

#include "list.h"
void push_front(struct list **l, void *data, acceptor p, acceptor f)
{
(void)l;
(void)data;
(void)p;
(void)f;
}
void pop_front(struct list **l)
{
(void)l;
}
void print_list(struct list *l)
{
(void)l;
}
void destroy_list(struct list **l)
{
(void)l;
}