mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-11-17 13:03:41 +00:00
31 lines
849 B
C
31 lines
849 B
C
/**
|
|
* @file
|
|
*/
|
|
|
|
#ifndef ADD_MAIN_H
|
|
#define ADD_MAIN_H
|
|
|
|
/**
|
|
* @fn error_checking
|
|
*/
|
|
/**
|
|
* @fn print_message
|
|
*/
|
|
/**
|
|
* @fn printing_head
|
|
*/
|
|
/**
|
|
* @fn set_defaults
|
|
*/
|
|
|
|
int error_checking (const float *, const int, const char *, const int, const int *,
|
|
const char *, const int);
|
|
int print_message (const int, FILE *, const int, FILE *, const int, const char *);
|
|
int printing_head (const char *, const int, const int, const int, const char *,
|
|
const int, const int, const float *, const int, const double,
|
|
const double, const double, const double, const double, const double,
|
|
const int *);
|
|
int set_defaults (float *, float *, float *, float *, int *, char *, int *, int *,
|
|
float *, float *, float *, char *, int *, int *);
|
|
|
|
#endif /* ADD_MAIN_H */ |