]> 4ch.mooo.com Git - 16.git/blobdiff - src/palllist.c
notime
[16.git] / src / palllist.c
index daab2b3840d15d93baacd18c1b533269344284de..023593b0e2d1e54fcfb1908c4913919a83bf93cf 100755 (executable)
@@ -163,12 +163,12 @@ void main()
    \r
        /* Let us create a sorted linked list to test the functions\r
         Created linked list will be 11->11->11->13->13->20 */\r
-       push(&head, 20);\r
-       push(&head, 13);\r
-       push(&head, 13);  \r
-       push(&head, 11);\r
-       push(&head, 11);\r
-       push(&head, 11); \r
+       pushll(&head, 20);\r
+       pushll(&head, 13);\r
+       pushll(&head, 13);  \r
+       pushll(&head, 11);\r
+       pushll(&head, 11);\r
+       pushll(&head, 11); \r
  \r
        printf("\n Linked list before duplicate removal  ");\r
        printList(head); \r