Release envir-1.0.1

* edited shared library
- deleted binary file and archive
This commit is contained in:
arcan1s
2013-07-24 18:04:32 +04:00
parent 69d9cf2936
commit 815fce8045
32 changed files with 4908 additions and 256 deletions

View File

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

View File

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

View File

@ -0,0 +1,6 @@
#ifndef ENVIR_SEARCH_H
#define ENVIR_SEARCH_H
int search_envir (const int, const int, const float *, const double, int *, int *);
#endif /* ENVIR_SEARCH_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 PRINT_STRUCTURE_H
#define PRINT_STRUCTURE_H
int print_structure (const char *, const int, const int *, const int, const int *,
const char *, const float *);
#endif /* PRINT_STRUCTURE_H */

View File

@ -0,0 +1,6 @@
#ifndef SET_CENTER_H
#define SET_CENTER_H
int set_center (const int, const int, const int *, const float *, float *);
#endif /* SET_CENTER_H */