1234567891011121314151617181920212223 |
- /*
- * (C) 2000 UNIVERSITY OF CHICAGO
- * See COPYRIGHT in top-level directory.
- */
- #ifndef _listops_h
- #define _listops_h
- /*
- * Support for singly-linked list of pointers (or ints)
- *
- */
- typedef struct _List *pList;
- typedef struct _Listitem *pListitem;
-
- #include "list.h"
- #endif
|