in ctsa.h the array params is always initialized as
double params[0]
(invalid in ISO C/C++)
why not simply
double *params
Im using this library in a data processing software, and was wondering if it had a purpose, because if not it would be nice to change, to avoid compiler warnings
in ctsa.h the array params is always initialized as
double params[0]
(invalid in ISO C/C++)
why not simply
double *params
Im using this library in a data processing software, and was wondering if it had a purpose, because if not it would be nice to change, to avoid compiler warnings