1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-09-27 16:05:54 -04:00
uemacs/list.h

14 lines
222 B
C
Raw Permalink Normal View History

2021-09-07 22:54:07 -04:00
/* 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 */