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

12 lines
128 B
C

#include "practice.h"
int is_palindrome(struct dlist *l)
{
//FIXME
}
struct list *reverse(struct list *l)
{
//FIXME
}