1
0
Fork 0
mirror of https://github.com/cosmo-sims/monofonIC.git synced 2024-09-19 17:03:45 +02:00

changed a char* to const char*

This commit is contained in:
Oliver Hahn 2021-05-11 11:53:17 +02:00
parent 2d5cc0ac50
commit ffc3334847
2 changed files with 2 additions and 2 deletions

View file

@ -1235,7 +1235,7 @@ int PANPHASIA_compute_coefficients_(size_t *xstart, size_t *ystart, size_t *zsta
//======================================================================================
//======================================================================================
int parse_and_validate_descriptor_(char *descriptor, int *pan_mode)
int parse_and_validate_descriptor_(const char *descriptor, int *pan_mode)
{
char *token;

View file

@ -49,7 +49,7 @@ void compute_all_properties_of_a_panphasia_cell_(size_t *level, size_t *j1, size
void return_root_legendre_coefficients_(PAN_REAL *root);
int parse_and_validate_descriptor_(char *, int *);
int parse_and_validate_descriptor_(const char *, int *);
int demo_descriptor_();
long long int compute_check_digit_();
int PANPHASIA_init_descriptor_(char *descriptor, int *verbose);