local_proto.h 526 B

123456789101112131415161718192021222324252627
  1. /* checkpt.c */
  2. int checkpoint(struct Cluster *, int);
  3. /* open_files.c */
  4. int open_files(void);
  5. /* print1.c */
  6. int print_band_means(FILE *, struct Cluster *);
  7. /* print2.c */
  8. int print_class_means(FILE *, struct Cluster *);
  9. /* print3.c */
  10. int print_seed_means(FILE *, struct Cluster *);
  11. /* print4.c */
  12. int print_centroids(FILE *, struct Cluster *);
  13. /* print5.c */
  14. int print_separability(FILE *, struct Cluster *);
  15. /* print6.c */
  16. int print_distribution(FILE *, struct Cluster *);
  17. /* timer.c */
  18. char *print_time(time_t);