mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-16 09:36:29 -05:00
14 lines
222 B
C
14 lines
222 B
C
|
/* list.h -- generic list deletion */
|
||
|
/* Copyright © 2021 Renaud Fivet */
|
||
|
#ifndef _LIST_H_
|
||
|
#define _LIST_H_
|
||
|
|
||
|
typedef struct list {
|
||
|
struct list *next ;
|
||
|
} *list_p ;
|
||
|
|
||
|
void freelist( list_p lp) ;
|
||
|
|
||
|
#endif
|
||
|
/* end of list.h */
|