bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
dl_lists.h
1/*
2 * FILENAME: dl_lists.h
3 *
4 * PURPOSE: Include file for double-linked list management functions
5 *
6 * AUTHOR: T. Habermann, NGDC, (303) 497 - 6472, haber@mail.ngdc.noaa.gov
7 *
8 * USAGE: #include <lists.h>
9 *
10 * COMMENTS: Many of the ideas in this generic list handling system
11 * originated in the Vermont Views list management code.
12 *
13 * The DLL module incorporates self tests when compiled with the symbolic
14 * macro DLL_CHK defined. If you build ANY files with DLL_CHK defined
15 * then you must build ALL files with DLL_CHK defined. Otherwise,
16 * different source files will have different opinions as to the
17 * contents of a DLL_NODE struct.
18 *
19 * CAVEAT:
20 * No claims are made as to the suitability of the accompanying
21 * source code for any purpose. Although this source code has been
22 * used by the NOAA, no warranty, expressed or implied, is made by
23 * NOAA or the United States Government as to the accuracy and
24 * functioning of this source code, nor shall the fact of distribution
25 * constitute any such endorsement, and no responsibility is assumed
26 * by NOAA in connection therewith. The source code contained
27 * within was developed by an agency of the U.S. Government.
28 * NOAA's National Geophysical Data Center has no objection to the
29 * use of this source code for any purpose since it is not subject to
30 * copyright protection in the U.S. If this source code is incorporated
31 * into other software, a statement identifying this source code may be
32 * required under 17 U.S.C. 403 to appear with any copyright notice.
33 */
34
35/* Protect against multiple inclusions */
36#ifndef DL_LISTS_H__
37#define DL_LISTS_H__
38
39/* linked list macros */
40
41
42#endif /* (NOT) DL_LISTS_H__ */
43