diff options
| author | Ján Jančár | 2023-10-14 17:46:49 +0200 |
|---|---|---|
| committer | GitHub | 2023-10-14 17:46:49 +0200 |
| commit | 2e3711e65ff73d3b0c709f7f92fab5532a6fe81a (patch) | |
| tree | e0053c646756c707493863843c6f0a140136f734 /src/io/output.c | |
| parent | a2329a559495573601c24659dc1924735362fe8f (diff) | |
| parent | 2858faa982718c94db16ca65e8b428d764053fb6 (diff) | |
| download | ecgen-2e3711e65ff73d3b0c709f7f92fab5532a6fe81a.tar.gz ecgen-2e3711e65ff73d3b0c709f7f92fab5532a6fe81a.tar.zst ecgen-2e3711e65ff73d3b0c709f7f92fab5532a6fe81a.zip | |
Diffstat (limited to 'src/io/output.c')
| -rw-r--r-- | src/io/output.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/io/output.c b/src/io/output.c index 12b412d..a69b905 100644 --- a/src/io/output.c +++ b/src/io/output.c @@ -181,40 +181,40 @@ char *output_sjson_begin() { return output_malloc("[\n"); } char *output_sjson_end() { return output_malloc("]\n"); } -void output_f(FILE *out, curve_t *curve) { +void output_f(FILE *output, curve_t *curve) { char *s = output_s(curve); if (s) { - fprintf(out, "%s", s); + fprintf(output, "%s", s); try_free(s); } } void output_o(curve_t *curve) { output_f(out, curve); } -void output_f_separator(FILE *out) { +void output_f_separator(FILE *output) { char *s = output_s_separator(); if (s) { - fprintf(out, "%s", s); + fprintf(output, "%s", s); try_free(s); } } void output_o_separator() { output_f_separator(out); } -void output_f_begin(FILE *out) { +void output_f_begin(FILE *output) { char *s = output_s_begin(); if (s) { - fprintf(out, "%s", s); + fprintf(output, "%s", s); try_free(s); } } void output_o_begin() { output_f_begin(out); } -void output_f_end(FILE *out) { +void output_f_end(FILE *output) { char *s = output_s_end(); if (s) { - fprintf(out, "%s", s); + fprintf(output, "%s", s); try_free(s); } } |
