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/tests/test0.c

13 lines
215 B
C

#include <assert.h>
#include "basic_testing.h"
#include "../lists.h"
int main() {
struct list * L[] = { 0, 0, 0 };
assert(concatenate_all(3, L) == 0);
assert(merge_sorted(0, 0) == 0);
return 0;
}