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
2026-03-30 10:57:41 +02:00

10 lines
208 B
C

#ifndef ADVANCED_H
#define ADVANCED_H
#include "../../utils/lists.h"
struct list *add_two_lists(struct list *l1, struct list *l2);
struct list *rotate_list(struct list *l, int k);
#endif /* !ADVANCED_H */