viewphvia - display elements of a phvia_list
#include mph402.h"
void viewphvia(pt)
phvia_list *pt;
pt Pointer to the phvia to be scaned viewphvia scans all the primary elements of
the phvia_list pointed to by pt, and displays a textual output of the data strcu-
ture contents.
is quite verbose, even if very easy to understand.
#include <stdio.h>
#include mph402.h"
void view_via(ptfig)
phfig_list *ptfig;
{
phvia_list *via;
for (via = ptfig->PHVIA; via; via = via->NEXT)
viewphvia(via);
}