The "dmp" Package

These routines are meant to provide a mechanism for writing the recursive, heirarchical data structure to a file in an ASCII (human readable) format.

Library: karma
Link With: -lkarma

Functions

dmp_multi_descDump a multi_array descriptor to a file.
dmp_packet_descDump a packet descriptor to a file.
dmp_element_descDump an element descriptor to a file.
dmp_array_descDump an array descriptor to a file.
dmp_dim_descDump a dimension descriptor to a file.
dmp_multi_dataDump the data in a multi_array descriptor to a file.
dmp_packetDump a packet to a file.
dmp_elementDump an element to a file.
dmp_arrayDump an array to a file.
dmp_listDump a linked list to a file.
dmp_flagDump a flag value to a file.


Functions


void dmp_multi_desc (FILE *fp, multi_array *multi_desc, flag comments)

This routine will dump a multi_array descriptor to a file, writing in ASCII format.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_packet_desc (FILE *fp, packet_desc *pack_desc, flag comments)

This routine will dump a packet descriptor to a file, writing in ASCII format.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_element_desc (FILE *fp, unsigned int type, char *desc, flag comments)

This routine will dump an element descriptor to a file, writing in ASCII.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_array_desc (FILE *fp, array_desc *arr_desc, flag comments)

This routine will dump an array descriptor to a file, writing in ASCII format. The packet descriptor for the array will also be dumped (this is a recursive process).

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_dim_desc (FILE *fp, dim_desc *dimension, flag comments)

This routine will dump a dimension descriptor to a file, writing in ASCII format. The packet descriptor for the array will also be dumped (this is a recursive process).

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_multi_data (FILE *fp, multi_array *multi_desc, flag comments)

This routine will dump the data in a multi_array descriptor to a file, writing in ASCII format.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_packet (FILE *fp, packet_desc *pack_desc, char *packet, flag comments)

This routine will dump a packet to a file, writing in ASCII format.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_element (FILE *fp, unsigned int type, char *desc, char *element, flag comments)

This routine will dump an element to a file, writing in ASCII format.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_array (FILE *fp, array_desc *arr_desc, char *array, flag comments)

This routine will dump an array to a file, writing in ASCII format.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_list (FILE *fp, packet_desc *pack_desc, list_header *list_head, flag comments)

This routine will dump an array descriptor to a file, writing in ASCII format.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


void dmp_flag (FILE *fp, flag logical, char *comment_string, flag comments)

This routine will dump the ASCII representation of a flag value to a file.

Parameters:

Returns: Nothing.
Multithreading Level: Unsafe


Back to Karma Home Page
Contact: Richard Gooch
Web Development: Ariel Internet Services