mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-20 02:42:23 +03:00
opaque_pointer
This commit is contained in:
34
opaque_pointer/linkedlist.h
Normal file
34
opaque_pointer/linkedlist.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* =====================================================================================
|
||||
*
|
||||
* 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
|
||||
Reference in New Issue
Block a user