source: CPL/oasis3-mct_5.0/lib/mct/mpi-serial/listP.h @ 6328

Last change on this file since 6328 was 6328, checked in by aclsce, 17 months ago

First import of oasis3-mct_5.0 (from oasis git server, branch OASIS3-MCT_5.0)

File size: 352 bytes
Line 
1/*
2 *  (C) 2000 UNIVERSITY OF CHICAGO
3 *      See COPYRIGHT in top-level directory.
4 */
5
6
7
8/*
9 * Private data structures for the list
10 *
11 */
12
13
14typedef struct _List
15{
16  pListitem head;
17  pListitem tail;
18  int count;
19} List;
20
21
22typedef struct _Listitem
23{
24  void *data;
25  pListitem prev;
26  pListitem next;
27
28#ifdef CHECKS
29  pList list;
30#endif
31
32} Listitem;
33
Note: See TracBrowser for help on using the repository browser.