mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-19 18:32:24 +03:00
30 lines
608 B
C
30 lines
608 B
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: application.c
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 10/02/24 10:17:06 PM IST
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: YOUR NAME (),
|
|
* Organization:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#include "linkedlist.h"
|
|
|
|
int
|
|
main(){
|
|
ll_node_t *node1 = malloc_new_node();
|
|
ll_node_t *node2 = malloc_new_node();
|
|
|
|
linkedlist_insertion(node1,node2);
|
|
|
|
return 0;
|
|
}
|