VisionX represents information internally as a doubly
linked list of data elements. Each element contains a type
descriptor, forward and backward pointers to other elements,
and data. The VisionX file i/o functions read and write
these lists.
The first element of a list is always a dummy element
that is required for consistency. The list manipulation
functions provide a set of programming tools for performing
operations on whole list structures.
The list manipulation toolkit contains the following
functions: VXinit − creates an empty list
structure, VXcpy − make a copy of a list
VXlnklist − link a list into another list and
VXdellist − delete a complete list.
|