listops.h 298 B

1234567891011121314151617181920212223
  1. /*
  2. * (C) 2000 UNIVERSITY OF CHICAGO
  3. * See COPYRIGHT in top-level directory.
  4. */
  5. #ifndef _listops_h
  6. #define _listops_h
  7. /*
  8. * Support for singly-linked list of pointers (or ints)
  9. *
  10. */
  11. typedef struct _List *pList;
  12. typedef struct _Listitem *pListitem;
  13. #include "list.h"
  14. #endif