Skip site navigation (1)Skip section navigation (2)

  
 
  

home | help
viewphvia - display elements of a phvia_list
#include "mph.h"
void viewphvia(pt)
phvia_list *pt;
pt  Pointer  to  the  phvia to be scanned viewphvia scans all the
primary elements of the phvia_list pointed to by pt, and displays
a textual output of the data strcuture contents.
Its use is mostly for debugging purposes, and  educational  ones,
since  the  output  is quite verbose, even if very easy to under-
stand.
#include <stdio.h>
#include "mph.h"
void view_via(ptfig)
phfig_list *ptfig;
{
phvia_list *via;
   for (via = ptfig->PHVIA; via; via = via->NEXT)
      viewphvia(via);
}


Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=viewphvia&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help