Пример #1
0
int VReadGraphs (FILE *file, VAttrList *attrs, VGraph **graphs)
{
  return VReadObjects(file, VGraphRepn, attrs, (VPointer **)graphs);
}
Пример #2
0
int VReadEdges (FILE *file, VAttrList *attributes, VEdges **edge_sets)
{
    return VReadObjects (file, VEdgesRepn, attributes,
			 (VPointer **) edge_sets);
}
Пример #3
0
int VReadImages (FILE *file, VAttrList *attributes, VImage **images)
{
  return VReadObjects (file, VImageRepn, attributes, (VPointer **) images);
}