refactoring

This commit is contained in:
arcan1s
2013-07-22 15:42:42 +04:00
parent 51d31d0a2f
commit 694751ce09
46 changed files with 1140 additions and 225760 deletions

View File

@ -0,0 +1,12 @@
#ifndef ADD_MAIN_H
#define ADD_MAIN_H
int error_checking (const float *, const int, const char *, const int, const int,
const char *, const int, const int);
int printing_head (const char *, const int, const int, const char *, const int,
const int, const float *, const int, const int *, const int,
const float *, const int);
int set_defaults (float *, int *, char *, int *, int *, int *, char *, int *,
int *, int *);
#endif /* ADD_MAIN_H */

View File

@ -0,0 +1,7 @@
#ifndef COORDS_H
#define COORDS_H
int reading_coords (const char *, const int, const int *, const float *, int *,
int *, int *, int *, int *, float *);
#endif /* COORDS_H */

View File

@ -0,0 +1,9 @@
#ifndef GRAPH_H
#define GRAPH_H
int graph_analyze (const int, const int *, const int, int *);
int check_cycle (const int, const int *);
int check_cycle_size (const int, const int *, const int, int *);
int check_tail (const int *);
#endif /* GRAPH_H */

View File

@ -0,0 +1,6 @@
#ifndef INT2CHAR_H
#define INT2CHAR_H
char conv (const int, const int);
#endif /* INT2CHAR_H */

View File

@ -0,0 +1,6 @@
#ifndef MESSAGES_H
#define MESSAGES_H
int message (const int, const int, const char *, FILE *);
#endif /* MESSAGES_H */

View File

@ -0,0 +1,7 @@
#ifndef STAT_PRINT_H
#define STAT_PRINT_H
int printing_agl (const char *, const char *, const int *, const int, const int *,
const int *, const int *, const int *, const int,int *);
#endif /* STAT_PRINT_H */

View File

@ -0,0 +1,7 @@
#ifndef STAT_SELECT_H
#define STAT_SELECT_H
int create_matrix (const int, const int, const int *, const int *, const float *,
const int, const float *, int *);
#endif /* STAT_SELECT_H */

View File

@ -0,0 +1,6 @@
#ifndef STAT_SORT_H
#define STAT_SORT_H
int proc_matrix (const int, const int *, int *, int *, int *, int *);
#endif /* STAT_SORT_H */

View File

@ -0,0 +1,7 @@
#ifndef SUMMARY_STAT_H
#define SUMMARY_STAT_H
int summary_statistic (const char *, const int, const int, const int, const int *,
const int *);
#endif /* SUMMARY_STAT_H */