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

FreeBSD Manual Pages

  
 
  

home | help
viewlofigcon  -	 display  elements  of a locon_list attached to	a
figure
#include "mlo.h"
void viewlofigcon(ptcon)
locon_list *ptcon;
ptcon Pointer to the locon to be scanned viewlofigcon  scans  all
the  primary  elements	of the locon_list loaded in ram, and dis-
plays 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 "mlo.h"
void view_figcon(ptfig)
lofig_list *ptfig;
{
locon_list *figcon;
   for (figcon = ptfig->LOCON; figcon; figcon =	figcon->NEXT)
      viewlofigcon(figcon);
}


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

home | help