/[MITgcm]/mitgcm.org/devel/buildweb/code-browser/F90Mapper/FD.h
ViewVC logotype

Annotation of /mitgcm.org/devel/buildweb/code-browser/F90Mapper/FD.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (hide annotations) (download)
Fri Sep 20 19:47:31 2002 UTC (22 years, 9 months ago) by adcroft
Branch point for: Import, MAIN
File MIME type: text/plain
Initial revision

1 adcroft 1.1 /* $Id: FD.h,v 1.1 1997/03/22 20:02:35 cnh Exp $*/
2    
3     /* =================== File directory info. ======================= */
4    
5     /* Structure of file directory records */
6     struct fdDRecord {
7     char *name; /* Directory name */
8     };
9     struct fdFRecord {
10     char *name; /* Source file name */
11     char *hname; /* HTML file name */
12     };
13     typedef struct fdDRecord fdDRecord;
14     typedef struct fdFRecord fdFRecord;
15    
16     /* Source and HTML linked lists */
17     struct fdSTab {
18     fdFRecord fileNam;
19     struct fdSTab *next;
20     struct fdSTab *prev;
21     };
22     typedef struct fdSTab fdSTab;
23    
24     /* Directory linked list */
25     struct fdDTab {
26     fdDRecord dir;
27     struct fdDTab *next;
28     struct fdDTab *prev;
29     fdSTab *sList;
30     };
31     typedef struct fdDTab fdDTab;
32    
33     fdDTab *fdList;
34     fdDTab *fdListHead;
35     fdDTab *fdListTail;

  ViewVC Help
Powered by ViewVC 1.1.22