Ejemplo n.º 1
0
VBoolean VWriteGraphs (FILE *file, VAttrList attrs,
		       int n, VGraph graphs[])
{
  return VWriteObjects(file, VGraphRepn, attrs, n, (VPointer *)graphs);
}
Ejemplo n.º 2
0
Archivo: Edges.c Proyecto: Rollmops/via
VBoolean VWriteEdges (FILE *file, VAttrList attributes,
		      int nedge_sets, VEdges edge_sets[])
{
    return VWriteObjects (file, VEdgesRepn, attributes, nedge_sets,
			  (VPointer *) edge_sets);
}
Ejemplo n.º 3
0
VBoolean VWriteImages (FILE *file, VAttrList attributes,
		       int nimages, VImage images[])
{
  return VWriteObjects (file, VImageRepn, attributes, nimages,
			(VPointer *) images);
}