/* ============================================================================ Name : Main.c Author : Version : Copyright : Your copyright notice Description : in C, Ansi-style ============================================================================ */ #include #include #include "LinkedList.h" static void Test(){ List l1 = ListMakeRange(2.0,12.2); List l2 = ListMakeRange(5.5, 9.4); } int main(void) { Test(); return 0; }