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
Raw Normal View History

2019-11-08 07:48:30 +00:00
#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