コード例 #1
0
ファイル: graph.c プロジェクト: Frederik-D-Weber/spisop
VBoolean VWriteGraphs (FILE *file, VAttrList attrs,
		       int n, VGraph graphs[])
{
  return VWriteObjects(file, VGraphRepn, attrs, n, (VPointer *)graphs);
}
コード例 #2
0
ファイル: Edges.c プロジェクト: Rollmops/via
VBoolean VWriteEdges (FILE *file, VAttrList attributes,
		      int nedge_sets, VEdges edge_sets[])
{
    return VWriteObjects (file, VEdgesRepn, attributes, nedge_sets,
			  (VPointer *) edge_sets);
}
コード例 #3
0
ファイル: FIL_Vista_Image.c プロジェクト: KoraST/ft_BIU-1
VBoolean VWriteImages (FILE *file, VAttrList attributes,
		       int nimages, VImage images[])
{
  return VWriteObjects (file, VImageRepn, attributes, nimages,
			(VPointer *) images);
}