diff options
| author | J08nY | 2017-03-09 13:18:15 +0100 |
|---|---|---|
| committer | J08nY | 2017-03-09 13:18:15 +0100 |
| commit | 8c65683537ea57a435a2f987f540bcc2ec5db678 (patch) | |
| tree | 18d6e8893c885d98392d9a4cc9a9d98e67003f18 /src/math/point.c | |
| parent | 7eff89c0095da4246a7b9c5a6654dc0d7692325e (diff) | |
| download | ecgen-8c65683537ea57a435a2f987f540bcc2ec5db678.tar.gz ecgen-8c65683537ea57a435a2f987f540bcc2ec5db678.tar.zst ecgen-8c65683537ea57a435a2f987f540bcc2ec5db678.zip | |
Diffstat (limited to 'src/math/point.c')
| -rw-r--r-- | src/math/point.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/math/point.c b/src/math/point.c index 6368c60..fb2235e 100644 --- a/src/math/point.c +++ b/src/math/point.c @@ -61,7 +61,7 @@ void points_free_deep(point_t ***points, size_t npoints) { } } -int point_random(curve_t *curve, config_t *config, arg_t *args) { +int point_random(curve_t *curve, config_t *cfg, arg_t *args) { points_free_deep(&curve->points, curve->npoints); point_t *p = point_new(); @@ -74,7 +74,7 @@ int point_random(curve_t *curve, config_t *config, arg_t *args) { return 1; } -int points_random(curve_t *curve, config_t *config, arg_t *args) { +int points_random(curve_t *curve, config_t *cfg, arg_t *args) { if (!args) { fprintf(stderr, "No args to an arged function. points_random"); return INT_MIN; @@ -110,7 +110,7 @@ int points_random(curve_t *curve, config_t *config, arg_t *args) { } */ -int points_trial(curve_t *curve, config_t *config, arg_t *args) { +int points_trial(curve_t *curve, config_t *cfg, arg_t *args) { // TODO stack code!!! if (!args) { fprintf(stderr, "No args to an arged function. points_trial"); @@ -149,7 +149,7 @@ int points_trial(curve_t *curve, config_t *config, arg_t *args) { return 1; } -int points_prime(curve_t *curve, config_t *config, arg_t *args) { +int points_prime(curve_t *curve, config_t *cfg, arg_t *args) { // TODO stack code!!! points_free_deep(&curve->points, curve->npoints); |
