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-02-2030/Chains_across_the_Island/Fundamentals/basics/basics.c
T
2026-03-30 10:57:41 +02:00

47 lines
563 B
C

#include "basics.h"
struct list *list_append(struct list *l, int e)
{
//FIXME
}
size_t list_count(struct list *l)
{
//FIXME
}
int list_insert(struct list **l, size_t index, int e)
{
}
struct list *list_get(struct list *l, size_t index)
{
//FIXME
}
struct list *list_find(struct list *l, int e)
{
//FIXME
}
struct list *list_delete_at(struct list **l, size_t index)
{
//FIXME
}
int list_remove(struct list **l, int e)
{
//FIXME
}
void list_destroy(struct list *l)
{
//FIXME
}
void list_print(struct list *l)
{
//FIXME
}