MISR Toolkit
1.5.1
|
#include "hdf.h"
Go to the source code of this file.
Data Structures | |
struct | GLE_struct |
struct | GLI_struct |
struct | GL_struct |
Macros | |
#define | Generic_stack Generic_list |
#define | Generic_queue Generic_list |
#define | HDGSinitialize_stack HDGLinitialize_list |
#define | HDGSdestroy_stack HDGLdestroy_list |
#define | HDGSpush HDGLadd_to_beginning |
#define | HDGSpop HDGLremove_from_beginning |
#define | HDGSpop_all HDGLremove_all |
#define | HDGSpeek_at_top HDGLpeek_at_beginning |
#define | HDGScopy_stack HDGLcopy_list |
#define | HDGQinitialize_queue HDGLinitialize_list |
#define | HDGQdestroy_queue HDGLdestroy_list |
#define | HDGQenqueue HDGLadd_to_end |
#define | HDGQdequeue HDGLremove_from_beginning |
#define | HDGQdequeue_all HDGLremove_all |
#define | HDGQpeek_at_head HDGLpeek_at_beginning |
#define | HDGQpeek_at_tail HDGLpeek_at_end |
#define | HDGQcopy_queue HDGLcopy_list |
Typedefs | |
typedef struct GLE_struct | Generic_list_element |
typedef struct GLI_struct | Generic_list_info |
typedef struct GL_struct | Generic_list |
#define Generic_queue Generic_list |
#define Generic_stack Generic_list |
#define HDGQcopy_queue HDGLcopy_list |
#define HDGQdequeue HDGLremove_from_beginning |
#define HDGQdequeue_all HDGLremove_all |
#define HDGQdestroy_queue HDGLdestroy_list |
#define HDGQenqueue HDGLadd_to_end |
#define HDGQinitialize_queue HDGLinitialize_list |
#define HDGQpeek_at_head HDGLpeek_at_beginning |
#define HDGQpeek_at_tail HDGLpeek_at_end |
#define HDGScopy_stack HDGLcopy_list |
#define HDGSdestroy_stack HDGLdestroy_list |
#define HDGSinitialize_stack HDGLinitialize_list |
#define HDGSpeek_at_top HDGLpeek_at_beginning |
#define HDGSpop HDGLremove_from_beginning |
#define HDGSpop_all HDGLremove_all |
#define HDGSpush HDGLadd_to_beginning |
typedef struct GL_struct Generic_list |
typedef struct GLE_struct Generic_list_element |
typedef struct GLI_struct Generic_list_info |
intn HDGLadd_to_beginning | ( | Generic_list | list, |
VOIDP | pointer | ||
) |
intn HDGLadd_to_end | ( | Generic_list | list, |
VOIDP | pointer | ||
) |
intn HDGLadd_to_list | ( | Generic_list | list, |
VOIDP | pointer | ||
) |
Generic_list HDGLall_such_that | ( | Generic_list | list, |
intn(*)(VOIDP pointer, VOIDP args) | fn, | ||
VOIDP | args | ||
) |
Generic_list HDGLcopy_list | ( | Generic_list | list | ) |
VOIDP HDGLcurrent_in_list | ( | Generic_list | list | ) |
void HDGLdestroy_list | ( | Generic_list * | list | ) |
VOIDP HDGLfirst_in_list | ( | Generic_list | list | ) |
VOIDP HDGLfirst_that | ( | Generic_list | list, |
intn(*)(VOIDP pointer, VOIDP args) | fn, | ||
VOIDP | args | ||
) |
intn HDGLinitialize_list | ( | Generic_list * | list | ) |
intn HDGLinitialize_sorted_list | ( | Generic_list * | list, |
intn(*)(VOIDP a, VOIDP b) | lt | ||
) |
intn HDGLis_empty | ( | Generic_list | list | ) |
intn HDGLis_in_list | ( | Generic_list | list, |
VOIDP | pointer | ||
) |
VOIDP HDGLlast_in_list | ( | Generic_list | list | ) |
VOIDP HDGLlast_that | ( | Generic_list | list, |
intn(*)(VOIDP pointer, VOIDP args) | fn, | ||
VOIDP | args | ||
) |
VOIDP HDGLnext_in_list | ( | Generic_list | list | ) |
VOIDP HDGLnext_that | ( | Generic_list | list, |
intn(*)(VOIDP pointer, VOIDP args) | fn, | ||
VOIDP | args | ||
) |
intn HDGLnum_of_objects | ( | Generic_list | list | ) |
VOIDP HDGLpeek_at_beginning | ( | Generic_list | list | ) |
VOIDP HDGLpeek_at_end | ( | Generic_list | list | ) |
void HDGLperform_on_list | ( | Generic_list | list, |
void(*)(VOIDP pointer, VOIDP args) | fn, | ||
VOIDP | args | ||
) |
VOIDP HDGLprevious_in_list | ( | Generic_list | list | ) |
VOIDP HDGLprevious_that | ( | Generic_list | list, |
intn(*)(VOIDP pointer, VOIDP args) | fn, | ||
VOIDP | args | ||
) |
void HDGLremove_all | ( | Generic_list | list | ) |
void HDGLremove_all_such_that | ( | Generic_list | list, |
intn(*)(VOIDP pointer, VOIDP args) | fn, | ||
VOIDP | args | ||
) |
VOIDP HDGLremove_current | ( | Generic_list | list | ) |
VOIDP HDGLremove_from_beginning | ( | Generic_list | list | ) |
VOIDP HDGLremove_from_end | ( | Generic_list | list | ) |
VOIDP HDGLremove_from_list | ( | Generic_list | list, |
VOIDP | pointer | ||
) |
void HDGLreset_to_beginning | ( | Generic_list | list | ) |
void HDGLreset_to_end | ( | Generic_list | list | ) |