This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
sys_prog/midterm/lists/lists.h

15 lines
261 B
C

#ifndef LISTS_H_INCLUDED
#define LISTS_H_INCLUDED
struct list {
int value;
struct list * next;
};
extern struct list * concatenate_all(int count, struct list * lists[]);
extern struct list * merge_sorted(struct list * a, struct list * b);
#endif