mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-20 02:42:23 +03:00
35 lines
658 B
C
35 lines
658 B
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: linkedlist.h
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 10/02/24 08:40:52 PM IST
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: YOUR NAME (),
|
|
* Organization:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#ifndef __LINKEDLIST__
|
|
#define __LINKEDLIST__
|
|
|
|
typedef
|
|
struct ll_node_ ll_node_t;
|
|
|
|
|
|
/*public APIs*/
|
|
void
|
|
linkedlist_insertion(
|
|
ll_node_t *current_node,
|
|
ll_node_t *new_node);
|
|
|
|
ll_node_t *
|
|
malloc_new_node();
|
|
#endif
|